Merge branch 'vendor/GMP'
[dragonfly.git] / usr.bin / patch / patch.1
1 .\"     $OpenBSD: patch.1,v 1.22 2008/06/06 20:44:00 jmc Exp $
2 .\"     $DragonFly: src/usr.bin/patch/patch.1,v 1.10 2008/08/18 19:15:55 joerg Exp $
3 .\" Copyright 1986, Larry Wall
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following condition
7 .\" is met:
8 .\"  1. Redistributions of source code must retain the above copyright
9 .\"     notice, this condition and the following disclaimer.
10 .\"
11 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
12 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
13 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
14 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
15 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
16 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
17 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
18 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
19 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
20 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
21 .\" SUCH DAMAGE.
22 .\"
23 .Dd August 18, 2008
24 .Dt PATCH 1
25 .Os
26 .Sh NAME
27 .Nm patch
28 .Nd apply a diff file to an original
29 .Sh SYNOPSIS
30 .Nm
31 .Bk -words
32 .Op Fl bCcEeflNnRstuv
33 .Op Fl B Ar backup-prefix
34 .Op Fl D Ar symbol
35 .Op Fl d Ar directory
36 .Op Fl F Ar max-fuzz
37 .Op Fl i Ar patchfile
38 .Op Fl o Ar out-file
39 .Op Fl p Ar strip-count
40 .Op Fl r Ar rej-name
41 .Op Fl V Cm t | nil | never
42 .Op Fl x Ar number
43 .Op Fl z Ar backup-ext
44 .Op Fl Fl posix
45 .Op Ar origfile Op Ar patchfile
46 .Ek
47 .Nm
48 .Pf \*(Lt Ar patchfile
49 .Sh DESCRIPTION
50 .Nm
51 will take a patch file containing any of the four forms of difference
52 listing produced by the
53 .Xr diff 1
54 program and apply those differences to an original file,
55 producing a patched version.
56 If
57 .Ar patchfile
58 is omitted, or is a hyphen, the patch will be read from the standard input.
59 .Pp
60 .Nm
61 will attempt to determine the type of the diff listing, unless over-ruled by a
62 .Fl c ,
63 .Fl e ,
64 .Fl n ,
65 or
66 .Fl u
67 option.
68 Context diffs (old-style, new-style, and unified) and
69 normal diffs are applied directly by the
70 .Nm
71 program itself, whereas ed diffs are simply fed to the
72 .Xr ed 1
73 editor via a pipe.
74 .Pp
75 If the
76 .Ar patchfile
77 contains more than one patch,
78 .Nm
79 will try to apply each of them as if they came from separate patch files.
80 This means, among other things, that it is assumed that the name of the file
81 to patch must be determined for each diff listing, and that the garbage before
82 each diff listing will be examined for interesting things such as file names
83 and revision level (see the section on
84 .Sx Filename Determination
85 below).
86 .Pp
87 The options are as follows:
88 .Bl -tag -width Ds
89 .It Xo
90 .Fl B Ar backup-prefix ,
91 .Fl Fl prefix Ar backup-prefix
92 .Xc
93 Causes the next argument to be interpreted as a prefix to the backup file
94 name.
95 If this argument is specified, any argument to
96 .Fl z
97 will be ignored.
98 .It Fl b , Fl Fl backup
99 Save a backup copy of the file before it is modified.
100 By default the original file is saved with a backup extension of
101 .Qq .orig
102 unless the file already has a numbered backup, in which case a numbered
103 backup is made.
104 This is equivalent to specifying
105 .Qo Fl V Cm existing Qc .
106 This option is currently the default, unless
107 .Fl -posix
108 is specified.
109 .It Fl C , Fl Fl check
110 Checks that the patch would apply cleanly, but does not modify anything.
111 .It Fl c , Fl Fl context
112 Forces
113 .Nm
114 to interpret the patch file as a context diff.
115 .It Xo
116 .Fl D Ar symbol ,
117 .Fl Fl ifdef Ar symbol
118 .Xc
119 Causes
120 .Nm
121 to use the
122 .Qq #ifdef...#endif
123 construct to mark changes.
124 The argument following will be used as the differentiating symbol.
125 Note that, unlike the C compiler, there must be a space between the
126 .Fl D
127 and the argument.
128 .It Xo
129 .Fl d Ar directory ,
130 .Fl Fl directory Ar directory
131 .Xc
132 Causes
133 .Nm
134 to interpret the next argument as a directory,
135 and change the working directory to it before doing anything else.
136 .It Fl E , Fl Fl remove-empty-files
137 Causes
138 .Nm
139 to remove output files that are empty after the patches have been applied.
140 This option is useful when applying patches that create or remove files.
141 .It Fl e , Fl Fl ed
142 Forces
143 .Nm
144 to interpret the patch file as an
145 .Xr ed 1
146 script.
147 .It Xo
148 .Fl F Ar max-fuzz ,
149 .Fl Fl fuzz Ar max-fuzz
150 .Xc
151 Sets the maximum fuzz factor.
152 This option only applies to context diffs, and causes
153 .Nm
154 to ignore up to that many lines in looking for places to install a hunk.
155 Note that a larger fuzz factor increases the odds of a faulty patch.
156 The default fuzz factor is 2, and it may not be set to more than
157 the number of lines of context in the context diff, ordinarily 3.
158 .It Fl f , Fl Fl force
159 Forces
160 .Nm
161 to assume that the user knows exactly what he or she is doing, and to not
162 ask any questions.
163 It assumes the following:
164 skip patches for which a file to patch can't be found;
165 patch files even though they have the wrong version for the
166 .Qq Prereq:
167 line in the patch;
168 and assume that patches are not reversed even if they look like they are.
169 This option does not suppress commentary; use
170 .Fl s
171 for that.
172 .It Xo
173 .Fl i Ar patchfile ,
174 .Fl Fl input Ar patchfile
175 .Xc
176 Causes the next argument to be interpreted as the input file name
177 (i.e. a patchfile).
178 This option may be specified multiple times.
179 .It Fl l , Fl Fl ignore-whitespace
180 Causes the pattern matching to be done loosely, in case the tabs and
181 spaces have been munged in your input file.
182 Any sequence of whitespace in the pattern line will match any sequence
183 in the input file.
184 Normal characters must still match exactly.
185 Each line of the context must still match a line in the input file.
186 .It Fl N , Fl Fl forward
187 Causes
188 .Nm
189 to ignore patches that it thinks are reversed or already applied.
190 See also
191 .Fl R .
192 .It Fl n , Fl Fl normal
193 Forces
194 .Nm
195 to interpret the patch file as a normal diff.
196 .It Xo
197 .Fl o Ar out-file ,
198 .Fl Fl output Ar out-file
199 .Xc
200 Causes the next argument to be interpreted as the output file name.
201 .It Xo
202 .Fl p Ar strip-count ,
203 .Fl Fl strip Ar strip-count
204 .Xc
205 Sets the pathname strip count,
206 which controls how pathnames found in the patch file are treated,
207 in case you keep your files in a different directory than the person who sent
208 out the patch.
209 The strip count specifies how many slashes are to be stripped from
210 the front of the pathname.
211 (Any intervening directory names also go away.)
212 For example, supposing the file name in the patch file was
213 .Pa /u/howard/src/blurfl/blurfl.c :
214 .Pp
215 Setting
216 .Fl p Ns Ar 0
217 gives the entire pathname unmodified.
218 .Pp
219 .Fl p Ns Ar 1
220 gives
221 .Pp
222 .D1 Pa u/howard/src/blurfl/blurfl.c
223 .Pp
224 without the leading slash.
225 .Pp
226 .Fl p Ns Ar 4
227 gives
228 .Pp
229 .D1 Pa blurfl/blurfl.c
230 .Pp
231 Not specifying
232 .Fl p
233 at all just gives you
234 .Pa blurfl.c ,
235 unless all of the directories in the leading path
236 .Pq Pa u/howard/src/blurfl
237 exist and that path is relative,
238 in which case you get the entire pathname unmodified.
239 Whatever you end up with is looked for either in the current directory,
240 or the directory specified by the
241 .Fl d
242 option.
243 .It Fl R , Fl Fl reverse
244 Tells
245 .Nm
246 that this patch was created with the old and new files swapped.
247 (Yes, I'm afraid that does happen occasionally, human nature being what it
248 is.)
249 .Nm
250 will attempt to swap each hunk around before applying it.
251 Rejects will come out in the swapped format.
252 The
253 .Fl R
254 option will not work with ed diff scripts because there is too little
255 information to reconstruct the reverse operation.
256 .Pp
257 If the first hunk of a patch fails,
258 .Nm
259 will reverse the hunk to see if it can be applied that way.
260 If it can, you will be asked if you want to have the
261 .Fl R
262 option set.
263 If it can't, the patch will continue to be applied normally.
264 (Note: this method cannot detect a reversed patch if it is a normal diff
265 and if the first command is an append (i.e. it should have been a delete)
266 since appends always succeed, due to the fact that a null context will match
267 anywhere.
268 Luckily, most patches add or change lines rather than delete them, so most
269 reversed normal diffs will begin with a delete, which will fail, triggering
270 the heuristic.)
271 .It Xo
272 .Fl r Ar rej-name ,
273 .Fl Fl reject-file Ar rej-name
274 .Xc
275 Causes the next argument to be interpreted as the reject file name.
276 .It Xo
277 .Fl s , Fl Fl quiet ,
278 .Fl Fl silent
279 .Xc
280 Makes
281 .Nm
282 do its work silently, unless an error occurs.
283 .It Fl t , Fl Fl batch
284 Similar to
285 .Fl f ,
286 in that it suppresses questions, but makes some different assumptions:
287 skip patches for which a file to patch can't be found (the same as
288 .Fl f ) ;
289 skip patches for which the file has the wrong version for the
290 .Qq Prereq:
291 line in the patch;
292 and assume that patches are reversed if they look like they are.
293 .It Fl u , Fl Fl unified
294 Forces
295 .Nm
296 to interpret the patch file as a unified context diff (a unidiff).
297 .It Xo
298 .Fl V Cm t | nil | never ,
299 .Fl Fl version-control Cm t | nil | never
300 .Xc
301 Causes the next argument to be interpreted as a method for creating
302 backup file names.
303 The type of backups made can also be given in the
304 .Ev PATCH_VERSION_CONTROL
305 or
306 .Ev VERSION_CONTROL
307 environment variables, which are overridden by this option.
308 The
309 .Fl B
310 option overrides this option, causing the prefix to always be used for
311 making backup file names.
312 The values of the
313 .Ev PATCH_VERSION_CONTROL
314 and
315 .Ev VERSION_CONTROL
316 environment variables and the argument to the
317 .Fl V
318 option are like the GNU Emacs
319 .Dq version-control
320 variable; they also recognize synonyms that are more descriptive.
321 The valid values are (unique abbreviations are accepted):
322 .Bl -tag -width Ds -offset indent
323 .It Cm t , numbered
324 Always make numbered backups.
325 .It Cm nil , existing
326 Make numbered backups of files that already have them,
327 simple backups of the others.
328 .It Cm never , simple
329 Always make simple backups.
330 .El
331 .It Fl v , Fl Fl version
332 Causes
333 .Nm
334 to print out its revision header and patch level.
335 .It Xo
336 .Fl x Ar number ,
337 .Fl Fl debug Ar number
338 .Xc
339 Sets internal debugging flags, and is of interest only to
340 .Nm
341 patchers.
342 .It Xo
343 .Fl z Ar backup-ext ,
344 .Fl Fl suffix Ar backup-ext
345 .Xc
346 Causes the next argument to be interpreted as the backup extension, to be
347 used in place of
348 .Qq .orig .
349 .It Fl Fl posix
350 Enables strict
351 .St -p1003.1-2004
352 conformance, specifically:
353 .Bl -enum
354 .It
355 Backup files are not created unless the
356 .Fl b
357 option is specified.
358 .It
359 If unspecified, the file name used is the first of the old, new and
360 index files that exists.
361 .El
362 .El
363 .Ss Patch Application
364 .Nm
365 will try to skip any leading garbage, apply the diff,
366 and then skip any trailing garbage.
367 Thus you could feed an article or message containing a
368 diff listing to
369 .Nm ,
370 and it should work.
371 If the entire diff is indented by a consistent amount,
372 this will be taken into account.
373 .Pp
374 With context diffs, and to a lesser extent with normal diffs,
375 .Nm
376 can detect when the line numbers mentioned in the patch are incorrect,
377 and will attempt to find the correct place to apply each hunk of the patch.
378 As a first guess, it takes the line number mentioned for the hunk, plus or
379 minus any offset used in applying the previous hunk.
380 If that is not the correct place,
381 .Nm
382 will scan both forwards and backwards for a set of lines matching the context
383 given in the hunk.
384 First
385 .Nm
386 looks for a place where all lines of the context match.
387 If no such place is found, and it's a context diff, and the maximum fuzz factor
388 is set to 1 or more, then another scan takes place ignoring the first and last
389 line of context.
390 If that fails, and the maximum fuzz factor is set to 2 or more,
391 the first two and last two lines of context are ignored,
392 and another scan is made.
393 .Pq The default maximum fuzz factor is 2.
394 .Pp
395 If
396 .Nm
397 cannot find a place to install that hunk of the patch, it will put the hunk
398 out to a reject file, which normally is the name of the output file plus
399 .Qq .rej .
400 (Note that the rejected hunk will come out in context diff form whether the
401 input patch was a context diff or a normal diff.
402 If the input was a normal diff, many of the contexts will simply be null.)
403 The line numbers on the hunks in the reject file may be different than
404 in the patch file: they reflect the approximate location patch thinks the
405 failed hunks belong in the new file rather than the old one.
406 .Pp
407 As each hunk is completed, you will be told whether the hunk succeeded or
408 failed, and which line (in the new file)
409 .Nm
410 thought the hunk should go on.
411 If this is different from the line number specified in the diff,
412 you will be told the offset.
413 A single large offset MAY be an indication that a hunk was installed in the
414 wrong place.
415 You will also be told if a fuzz factor was used to make the match, in which
416 case you should also be slightly suspicious.
417 .Ss Filename Determination
418 If no original file is specified on the command line,
419 .Nm
420 will try to figure out from the leading garbage what the name of the file
421 to edit is.
422 When checking a prospective file name, pathname components are stripped
423 as specified by the
424 .Fl p
425 option and the file's existence and writability are checked relative
426 to the current working directory (or the directory specified by the
427 .Fl d
428 option).
429 .Pp
430 If the diff is a context or unified diff,
431 .Nm
432 is able to determine the old and new file names from the diff header.
433 For context diffs, the
434 .Dq old
435 file is specified in the line beginning with
436 .Qq ***
437 and the
438 .Dq new
439 file is specified in the line beginning with
440 .Qq --- .
441 For a unified diff, the
442 .Dq old
443 file is specified in the line beginning with
444 .Qq ---
445 and the
446 .Dq new
447 file is specified in the line beginning with
448 .Qq +++ .
449 If there is an
450 .Qq Index:
451 line in the leading garbage (regardless of the diff type),
452 .Nm
453 will use the file name from that line as the
454 .Dq index
455 file.
456 .Pp
457 .Nm
458 will choose the file name by performing the following steps, with the first
459 match used:
460 .Bl -enum
461 .It
462 If
463 .Nm
464 is operating in strict
465 .St -p1003.1-2004
466 mode, the first of the
467 .Dq old ,
468 .Dq new
469 and
470 .Dq index
471 file names that exist is used.
472 Otherwise,
473 .Nm
474 will examine either the
475 .Dq old
476 and
477 .Dq new
478 file names or, for a non-context diff, the
479 .Dq index
480 file name, and choose the file name with the fewest path components,
481 the shortest basename, and the shortest total file name length (in that order).
482 .It
483 If no file exists,
484 .Nm
485 checks for the existence of the files in an SCCS or RCS directory
486 (using the appropriate prefix or suffix) using the criteria specified
487 above.
488 If found,
489 .Nm
490 will attempt to get or check out the file.
491 .It
492 If no suitable file was found to patch, the patch file is a context or
493 unified diff, and the old file was zero length, the new file name is
494 created and used.
495 .It
496 If the file name still cannot be determined,
497 .Nm
498 will prompt the user for the file name to use.
499 .El
500 .Pp
501 Additionally, if the leading garbage contains a
502 .Qq Prereq:\ \&
503 line,
504 .Nm
505 will take the first word from the prerequisites line (normally a version
506 number) and check the input file to see if that word can be found.
507 If not,
508 .Nm
509 will ask for confirmation before proceeding.
510 .Pp
511 The upshot of all this is that you should be able to say, while in a news
512 interface, the following:
513 .Pp
514 .Dl | patch -d /usr/src/local/blurfl
515 .Pp
516 and patch a file in the blurfl directory directly from the article containing
517 the patch.
518 .Ss Backup Files
519 By default, the patched version is put in place of the original, with
520 the original file backed up to the same name with the extension
521 .Qq .orig ,
522 or as specified by the
523 .Fl B ,
524 .Fl V ,
525 or
526 .Fl z
527 options.
528 The extension used for making backup files may also be specified in the
529 .Ev SIMPLE_BACKUP_SUFFIX
530 environment variable, which is overridden by the options above.
531 .Pp
532 If the backup file is a symbolic or hard link to the original file,
533 .Nm
534 creates a new backup file name by changing the first lowercase letter
535 in the last component of the file's name into uppercase.
536 If there are no more lowercase letters in the name,
537 it removes the first character from the name.
538 It repeats this process until it comes up with a
539 backup file that does not already exist or is not linked to the original file.
540 .Pp
541 You may also specify where you want the output to go with the
542 .Fl o
543 option; if that file already exists, it is backed up first.
544 .Ss Notes For Patch Senders
545 There are several things you should bear in mind if you are going to
546 be sending out patches:
547 .Pp
548 First, you can save people a lot of grief by keeping a
549 .Pa patchlevel.h
550 file which is patched to increment the patch level as the first diff in the
551 patch file you send out.
552 If you put a
553 .Qq Prereq:
554 line in with the patch, it won't let them apply
555 patches out of order without some warning.
556 .Pp
557 Second, make sure you've specified the file names right, either in a
558 context diff header, or with an
559 .Qq Index:
560 line.
561 If you are patching something in a subdirectory, be sure to tell the patch
562 user to specify a
563 .Fl p
564 option as needed.
565 .Pp
566 Third, you can create a file by sending out a diff that compares a
567 null file to the file you want to create.
568 This will only work if the file you want to create doesn't exist already in
569 the target directory.
570 .Pp
571 Fourth, take care not to send out reversed patches, since it makes people wonder
572 whether they already applied the patch.
573 .Pp
574 Fifth, while you may be able to get away with putting 582 diff listings into
575 one file, it is probably wiser to group related patches into separate files in
576 case something goes haywire.
577 .Sh ENVIRONMENT
578 .Bl -tag -width "PATCH_VERSION_CONTROL" -compact
579 .It Ev POSIXLY_CORRECT
580 When set,
581 .Nm
582 behaves as if the
583 .Fl Fl posix
584 option has been specified.
585 .It Ev SIMPLE_BACKUP_SUFFIX
586 Extension to use for backup file names instead of
587 .Qq .orig .
588 .It Ev TMPDIR
589 Directory to put temporary files in; default is
590 .Pa /tmp .
591 .It Ev PATCH_VERSION_CONTROL
592 Selects when numbered backup files are made.
593 .It Ev VERSION_CONTROL
594 Same as
595 .Ev PATCH_VERSION_CONTROL .
596 .El
597 .Sh FILES
598 .Bl -tag -width "$TMPDIR/patch*" -compact
599 .It Pa $TMPDIR/patch*
600 .Nm
601 temporary files
602 .It Pa /dev/tty
603 used to read input when
604 .Nm
605 prompts the user
606 .El
607 .Sh DIAGNOSTICS
608 Too many to list here, but generally indicative that
609 .Nm
610 couldn't parse your patch file.
611 .Pp
612 The message
613 .Qq Hmm...
614 indicates that there is unprocessed text in the patch file and that
615 .Nm
616 is attempting to intuit whether there is a patch in that text and, if so,
617 what kind of patch it is.
618 .Pp
619 The
620 .Nm
621 utility exits with one of the following values:
622 .Pp
623 .Bl -tag -width Ds -compact -offset indent
624 .It \&0
625 Successful completion.
626 .It \&1
627 One or more lines were written to a reject file.
628 .It \*[Gt]\&1
629 An error occurred.
630 .El
631 .Pp
632 When applying a set of patches in a loop it behooves you to check this
633 exit status so you don't apply a later patch to a partially patched file.
634 .Sh SEE ALSO
635 .Xr diff 1
636 .Sh STANDARDS
637 The
638 .Nm
639 utility is compliant with the
640 .St -p1003.1-2004
641 specification
642 (except as detailed above for the
643 .Fl -posix
644 option),
645 though the presence of
646 .Nm
647 itself is optional.
648 .Pp
649 The flags
650 .Op Fl CEfstuvBFVxz
651 and
652 .Op Fl -posix
653 are extensions to that specification.
654 .Sh AUTHORS
655 .An Larry Wall
656 with many other contributors.
657 .Sh CAVEATS
658 .Nm
659 cannot tell if the line numbers are off in an ed script, and can only detect
660 bad line numbers in a normal diff when it finds a
661 .Qq change
662 or a
663 .Qq delete
664 command.
665 A context diff using fuzz factor 3 may have the same problem.
666 Until a suitable interactive interface is added, you should probably do
667 a context diff in these cases to see if the changes made sense.
668 Of course, compiling without errors is a pretty good indication that the patch
669 worked, but not always.
670 .Pp
671 .Nm
672 usually produces the correct results, even when it has to do a lot of
673 guessing.
674 However, the results are guaranteed to be correct only when the patch is
675 applied to exactly the same version of the file that the patch was
676 generated from.
677 .Sh BUGS
678 Could be smarter about partial matches, excessively deviant offsets and
679 swapped code, but that would take an extra pass.
680 .Pp
681 Check patch mode
682 .Pq Fl C
683 will fail if you try to check several patches in succession that build on
684 each other.
685 The entire
686 .Nm
687 code would have to be restructured to keep temporary files around so that it
688 can handle this situation.
689 .Pp
690 If code has been duplicated (for instance with #ifdef OLDCODE ... #else ...
691 #endif),
692 .Nm
693 is incapable of patching both versions, and, if it works at all, will likely
694 patch the wrong one, and tell you that it succeeded to boot.
695 .Pp
696 If you apply a patch you've already applied,
697 .Nm
698 will think it is a reversed patch, and offer to un-apply the patch.
699 This could be construed as a feature.