Adjust to cope with git-linus.diff in 2.6.27-0.148.rc0.git2.fc10.
[releases.git] / deblob-check
1 #! /bin/sh
2
3 # deblob-check version 2008-07-16.1
4 # Inspired in gNewSense's find-firmware script.
5 # Written by Alexandre Oliva <lxoliva@fsfla.org>
6
7 # Check http://www.fsfla.org/svn/fsfla/software/linux-libre for newer
8 # versions.
9
10 # Copyright (C) 2008 Alexandre Oliva
11 #
12 # This program is free software; you can redistribute it and/or modify
13 # it under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; either version 2 of the License, or
15 # (at your option) any later version.
16 #
17 # This program is distributed in the hope that it will be useful, but
18 # WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20 # General Public License for more details.
21 #
22 # You should have received a copy of the GNU General Public License
23 # along with this program; if not, write to the Free Software
24 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
25 # USA
26
27
28 # usage: deblob-check [-S] [-vv] [-s S] [-lDdBbCcXxPpFftVh?H] \
29 #        [*.tar* patch-* *.patch *.diff]
30
31 # Look for too-long undocumented sequences of numbers (generally blobs
32 # in disguise) in source files.
33
34 # The order of command line flags is significant.  Flags given out of
35 # the order above won't be handled correctly, sorry.
36
37 # -s --sensitivity: must be followed by a blank and a number.
38 #               Specifies the number of consecutive integral or
39 #               character constants that trigger the blob detector.
40
41 # The default sensitivity is 32 constants.
42
43 # The sensitivity, if present, must be the first option.  The action
44 # selection, if present, must be the first argument, except for the
45 # sensitivity and verbosity.
46
47 # The default can be overridden with one of:
48
49 # -l --list-blobs: list files that contain sequences that match the
50 #               blob detector test and that are not known to be false
51 #               positives.  This is the default option.
52
53 # -d --deblob --mark-blobs: print the processed input, replacing
54 #               sequences that match the blob detector test and that
55 #               are NOT known to be false positives with
56 #               /*(DEBLOBBED)*/.
57
58 # -D --cat: print the processed input, as it would have been fed to
59 #               the blob detector script.  Use -S to save the sed
60 #               script used to process it, and search for `sedcat:' in
61 #               comments to locate the relevant adaptation points.
62
63 # -b --print-marked-blobs: like -d, but print only the matching
64 #               sequences.
65
66 # -B --print-blobs: like -b, but do not deblob the sequences.
67
68 # -c --print-marked-blobs-with-context: like -b, but try to maximize
69 #               the context around the blobs.  This maximization will
70 #               sometimes disregard known false positives, if they
71 #               happen to be contained within the extended match.
72 #               This is probably an indication that the false positive
73 #               matching rule could be improved.
74
75 # -C --print-blobs-with-context: like -B, but try to maximize the
76 #               context around the blobs.
77
78 # -X --print-all-matches: print all blobs, be they known false
79 #               positives or blobs.
80
81 # -x --list-all-matches: list files that contain sequences that appear
82 #               to be blobs, be they known false positives or not.
83
84 # -p --mark-false-positives: print the processed input, replacing
85 #               sequences that match the blob detector test, but that
86 #               are known to be false positives, with /*(DEBLOBBED)*/.
87
88 # -P --list-false-positives: list files that contain false positives.
89
90 # -f --print-marked-false-positives: like -p, but print only the
91 #               matching sequences.
92
93 # -F --print-false-positives: like -f, but do not deblob the sequences.
94
95 # -t --test: run (very minimal) self-test.
96
97 # -V --version: print a version number
98
99 # -h -? -H --help: print short or long help message
100
101
102 # debugging options:
103
104 # -S --save-scripts: save scripts and temporary files.
105
106 # -v --verbose: increase verbosity level, for internal debugging.  May
107 #               be given at most twice.
108
109 # The exit status is only significant for the --list options: it will
110 # be true if nothing was found, and false otherwise.
111
112 : # Mark the end of the help message.
113
114 # TODO:
115
116 # - Improve handling of command-line arguments, so as to not make the
117 # order relevant.
118
119 # - Add an option for the user to feed their own false positive
120 # patterns.
121
122 # - Add support to recognize known blobs (or other non-Free
123 # signatures, really), to speed up the scanning of files containing
124 # blobs, and to avoid attempts to disguise blobs.
125
126 # - Factor out the code in the various print_* and list_* parts of the
127 # sed script, at least in the shell sources.  Make sure they're all
128 # included and expanded in a saved --cat script though.
129
130 # - Add support for file name tagging in patterns, such that blobs or
131 # false positives are recognized only when handling the specific
132 # filename, be it stand-alone, as part of a patch or a tarball.  This
133 # should help avoid recognition of actual blobs as false positives
134 # just because there's a symbol with a different name elsewhere.
135
136 #   It is convenient that the patterns provided by the user to
137 # recognize file names can be empty (for backward compatibility), but
138 # this should ideally be phased out in favor of more precise matches.
139 # It's important that files can be recognized with leading tarball or
140 # patch names, that the filename used within the tarball contain
141 # leading garbage, and even that a partial pathname be recognizable
142 # (say recognize drivers/net/whatever.c when the input file is named
143 # ../net/whatever.c).
144
145 #   Rather than using regular expressions to recognize multiple files
146 # it's convenient (but not quite essential) that filename patterns be
147 # specifiable as regular expressions, rather than simple filenames,
148 # but there are other ways around this.
149
150 #   Maintaining begin/end markers in a stack-like fashion as part of
151 # the processed stream, and using the names in them as (optional) part
152 # of the recognition patterns, would enable us to do it.
153
154 #   Introducing annotations next to the false positives (and recognized
155 # blobs) as an early part of the process may speed things up and
156 # enable fast processing, but how to introduce the annotations quickly
157 # in the first place?  Given patterns such as
158
159 #   \(\(file1\)\(.*\)\(pat1\)\|\(file2\)\(.*\)\(pat2\)\|...\)
160
161 # how do we get sed to introduce a marker that contains file2 right
162 # before or right after pat2, without turning a big efficient regexp
163 # into a slowish sequence of s/// commands?
164
165 # - Re-check and narrow false-positive patterns to make sure they
166 # apply only to the relevant content.
167
168 # - Scripting abilities, so as to be able to automate the removal of
169 # source files or of blobs from source files in a tarball without
170 # having to extract the entire tarball (as in tar --update/--delete)
171 # would be nice.  Carrying over removed files automatically into
172 # patches would also be great, and this sort of script would be
173 # perfect to document what has been done to a tarball plus a set of
174 # patches.  Something like deblob.script:
175 #
176 #   tarball linux-2.6.24.tar.bz2
177 #   delete net/wireloss/freedom.c drivers/me/crazy.c
178 #   deblob include/linux/slab-blob-kfree.h
179 #   deconfig drivers/char/drm DRM_IS_BAD
180 #
181 #   patch patch-2.6.25-rc7.bz2
182 #   delete arch/power/over/you.c
183
184 # such that the deletes from an earlier file would carry over into the
185 # subsequent ones, and new tarballs and patch files would be generated
186 # with the libre- prefix in their basename, and the xdeltas between
187 # the original files and the modified files would be minimal, and
188 # redundant with this script and the input script while at that.
189
190 # - Improve documentation of the code.
191
192 # - Write a decent testsuite.
193
194 # - Insert your idea here. :-)
195
196 # Yeah, lots of stuff to do.  Want to help?
197
198 # This makes it much faster, and mostly immune to non-ASCII stuff, as
199 # long as a 8-bit-safe sed is used.  Probably a safe assumption these
200 # days.
201 case ${LANG+set} in set) LANG=C; export LANG;; esac
202
203 rm="rm -f"
204 case $1 in
205 --save-scripts | -S)
206   shift
207   rm="echo preserving"
208   ;;
209 esac
210
211 # Choose verbosity level for sed script debugging and performance
212 # analysis.
213 case $1 in
214 --verbose | -v)
215   shift
216   case $1 in
217   --verbose | -v)
218     shift
219     v="i\\
220 :
221 p;
222 i\\
223 "
224     ;;
225   *)
226     v="P;i\\
227 "
228     ;;
229   esac
230   ;;
231 *) 
232   v="# "
233   ;;
234 esac
235
236 sens=31 # 32 - 1
237 case $1 in
238 --sensitivity | -s)
239   sens=$2;
240   shift 2 || exit 1
241
242   if test "$sens" -gt 0 2>/dev/null; then
243     :
244   else
245     echo invalid sensitivity: $sens >&2
246     exit 1
247   fi
248
249   sens=`expr $sens - 1`
250   ;;
251 esac
252
253 test_mode=false
254
255 name=deblob-check
256
257 case $1 in
258 --version | -V)
259   sed '/^# '$name' version /,/^# Written by/ { s/^# //; p; }; d' < $0
260   exit 0
261   ;;
262
263 -\? | -h)
264   sed -n '/^# usage:/,/# -h/ { /^# -/,/^$/{s/^# \(-.*\):.*/\1/p; d; }; s/^\(# \?\)\?//p; }' < $0 &&
265   echo
266   echo "run \`$name --help | more' for full usage"
267   exit 0
268   ;;
269
270 --help | -H)
271   sed -n '/^# '$name' version /,/^[^#]/ s/^\(# \?\)\?//p' < $0
272   exit 0
273   ;;
274
275 --test | -t)
276   test_mode=:
277   ;;
278
279 --mark-false-positives | -p)
280   shift;
281   set_sed_cmd () {
282     set_sedmain "b list_both;" "p;" "b list_matches;"
283   }
284   ;;
285
286 --print-marked-false-positives | -f)
287   shift;
288   set_sed_cmd () {
289     set_sedmain "b print_marked_matches;" "" "b print_marked_matches;"
290   }
291   ;;
292
293 --print-false-positives | -F)
294   shift;
295   set_sed_cmd () {
296     set_sedmain "b print_matches;" "" "b print_matches;"
297   }
298   ;;
299
300 --deblob | --mark-blobs | -d)
301   shift;
302   set_sed_cmd () {
303     set_sedmain "b list_blobs;" "p;" "p;"
304   }
305   ;;
306
307 --cat | -D)
308   shift;
309   set_sed_cmd () {
310     set_sedmain \
311       "# sedcat: Actual blob detected, but there may be false positives." \
312       "# sedcat: No blob whatsoever found." \
313       "# sedcat: False positives found." \
314       "p; d; # sedcat: Just print stuff, remove this line to run the actual script."
315   }
316   ;;
317
318 --print-marked-blobs | -b)
319   shift;
320   set_sed_cmd () {
321     set_sedmain "b print_marked_blobs;"
322   }
323   ;;
324
325 --print-blobs | -B)
326   shift;
327   set_sed_cmd () {
328     set_sedmain "b print_blobs;"
329   }
330   ;;
331
332 --print-marked-blobs-with-context | -c)
333   shift;
334   set_sed_cmd () {
335     set_sedmain "b print_marked_cblobs;"
336   }
337   ;;
338
339 --print-blobs-with-context | -C)
340   shift;
341   set_sed_cmd () {
342     set_sedmain "b print_cblobs;"
343   }
344   ;;
345
346 --list-false-positives | -P)
347   shift;
348   set_sed_cmd () {
349     set_sedmain "" "" "
350 i\\
351 $file
352 q 1;"
353   }
354   ;;
355
356 --list-all-matches | -x)
357   shift;
358   set_sed_cmd () {
359     set_sedmain "
360 i\\
361 $file
362 q 1;" "" "
363 i\\
364 $file
365 q 1;"
366   }
367   ;;
368
369 --print-all-matches | -X)
370   shift;
371   set_sed_cmd () {
372     set_sedmain "b print_both;" "" "b print_matches;"
373   }
374   ;;
375
376 *)
377   case $1 in
378   -- | -l | --list-blobs) shift;;
379   esac
380   case $1 in
381   -*)
382     if test ! -f "$1"; then
383       echo "$name: \`$1' given too late or out of the proper sequence." >&2
384       echo "$name: The order of arguments is significant, see the usage." >&2
385       exit 1
386     fi
387     ;;
388   esac
389       
390   set_sed_cmd () {
391     set_sedmain "
392 i\\
393 $file
394 q 1;"
395   }
396   ;;
397
398 esac
399
400 case $1 in
401 --) shift;;
402 esac
403
404 if $test_mode; then
405   pass=:
406
407   # Exercise some nasty inputs to see that we recognize them as blobs
408   # with full context.
409   for string in \
410     "1,2,3,4" \
411     "= {
412 1, 0x2, 03, L'\x4'
413 }" \
414     "=
415 {
416   '\\x1', '\\002'
417   ,
418   {
419     { \"\\x3\", },
420     \"\\004\"
421   },
422 };" \
423     ".long 1,2
424      .long \$3,\$4" \
425     "#define X { 1, 2, \\
426                  3, 4, /* comment */ \\
427                }" \
428   "= {
429 /*
430  * multi-line
431  * comment
432  */
433  {
434    0x4c00c000, 0x00000000, 0x00060000, 0x00000000,
435  },
436 }" \
437   ; do
438     case `echo "$string" | $0 -s 4 -c` in
439     "::: - :::
440 $string") ;;
441     *) echo "failed positive test for:
442 $string" >&2
443        pass=false;;
444     esac
445   done
446
447   # Make sure we do not recognize these as blobs.
448   for string in \
449     "#define X { 1, 2 }
450 #define Y { 3, 4 }" \
451     " 0x00, 0x00, 0x00 " \
452   ; do
453     case `echo "$string" | $0 -s 4` in
454     "") ;;
455     *) echo "failed negative test for:
456 $string" >&2
457        pass=false;;
458     esac
459   done
460
461   # How did we do?
462   if $pass; then
463     echo success
464   fi
465
466   $pass
467   exit
468 fi
469
470 # Call addx as needed to set up more patterns to be recognized as
471 # false positives.  Takes the input filename in $1.
472
473 set_except () {
474   # Look for a multi-line definition starting with a line that matches
475   # $1 (implicitly anchored to the beginning of the line), and ending
476   # at the first ';'.  $2 may optionally name the files in which this
477   # match is to be disregarded as a potential blob.
478   initnc () {
479     addx "$1[^;]*;\\?" $2
480   }
481
482   # Look for a multi-line definition starting with a line that matches
483   # $1 (implicitly anchored to the beginning of the line), and ending
484   # at the first ';' that's not within comments.
485   initc () {
486     addx "$1\\([^;]*\\|$comment\\)*;\\?" $2
487   }
488
489   # Accept as a non-blob an expression $1 that would have otherwise
490   # triggered blob detection.  The expression must end in a way that
491   # would trigger the blob detection machinery.
492   accept () {
493     addx "$1" $2
494   }
495
496   # Match up to the end a comment started in $1.
497   ocomment () {
498     addx "$1\\([^*]\\|[*][*]*[^*/]\\|[*]*[\\n]\\)*[*]*[*][/]" $2
499   }
500
501   # Match $1 followed by backslash-terminated lines and a last
502   # non-backslash-terminated line.
503   oprepline () {
504     addx "$1\\([^\\n]*\\\\[\\n]\\)*[^\\n\\\\]*$eol" $2
505   }
506
507   # Match $1 in $2 as a blob.  Not implemented yet.
508   blob () {
509     :
510   }
511
512   case /$1 in
513   /drivers/net/tg3.c)
514     # This file contains firmwares that we deblob with high
515     # sensitivity, so make sure the sequences of numbers that are not
516     # blobs are not deblobbed.  FIXME: we should have patterns to
517     # recognize the blobs instead.
518     accept "    static const u32 test_pat\[4\]\[6\] = {$sepx$blobpat*$sepx};" drivers/net/tg3.c
519     accept "    }\\(,\\? mem_tbl_5\\(70x\\|705\\|755\\|906\\)\\[\\] = {$sepx$blobpat*$sepx}\\)*;" drivers/net/tg3.c
520     ;;
521   */*linux*.tar* | */*kernel*.tar* | */*linux-*.*.*/*)
522     # false alarms, contain source
523     # drivers/net/wan/wanxlfw.inc_shipped -> wanxlfw.S
524     accept 'static u8 firmware\[\]={[\n]0x60,\(0x00,\)*0x16,\(0x00,\)*\([\n]\(0x[0-9A-F][0-9A-F],\)*\)*[\n]0x23,0xFC,0x00,0x00,0x00,0x01,0xFF,0xF9,0x00,0xD4,0x61,0x00,0x06,0x74,0x33,0xFC,\([\n]\(0x[0-9A-F][0-9A-F],\)*\)*0x00[\n]};'
525     # drivers/usb/serial/xircom_pgs_fw.h -> xircom_pgs.S
526     initnc 'static const struct ezusb_hex_record xircom_pgs_firmware\[\] ='
527     # drivers/usb/serial/keyspan_pda_fw_h -> keyspan_pda.S
528     initnc 'static const struct ezusb_hex_record keyspan_pda_firmware\[\] ='
529     # arch/m68k/ifpsp060/*.sa -> src/*.s
530     accept '    \.long  0x60ff0000,0x02360000,0x60ff0000,0x16260000[\n]'"$sepx$blobpat*"
531     accept '    \.long  0x60ff0000,0x17400000,0x60ff0000,0x15f40000[\n]'"$sepx$blobpat*"
532     # arch/powerpc/platforms/cell/spufs/spu_save_dump.h_shipped -> spu_save.c
533     initnc 'static unsigned int spu_save_code\[\]  __attribute__((__aligned__(128))) ='
534     # arch/powerpc/platforms/cell/spufs/spu_restore_dump.h_shipped -> spu_restore.c
535     initnc 'static unsigned int spu_restore_code\[\]  __attribute__((__aligned__(128))) ='
536     # drivers/net/ixp2000/ixp2400_tx.ucode -> ixp2400_tx.uc
537     initnc '    \.initial_reg_values    = (struct ixp2000_reg_value \[\]) {'
538     # drivers/net/ixp2000/ixp2400_rx.ucode -> ixp2400_rx.uc
539     initnc '    \.initial_reg_values    = (struct ixp2000_reg_value \[\]) {'
540     initnc '[   ]*\.\(digest\|entries\|input\|key\|output\|plaintext\|result\)[         ]*= [{"]' crypto/tcrypt.h
541
542     # checked:
543
544     accept '    \$3 = {{pge = {{ste = {\(\([0-9][0-9a-fx{},\n   ]*\|\(pge\|ste\) =\|<repeats [0-9]\+ times>\)[{},\n     ]*\)*<repeats 11 times>}'"$eol"
545     # arch/sparc/lib/divdi3.S
546     accept '__clz_tab:[\n]      \.byte  0\(,[0-5]\)\+'"$sepx$blobpat*"
547     accept 'PITBL:[\n]  \.long  0xC0040000,0xC90FDAA2,'"$blobpat*"
548     # arch/m68k/mac/mac_penguin.S
549     accept '\(0x[0F][0F],\)\+\\[\n]\(\(0x[0F][0F],\)\+\\[\n]\)*\(0x[0F][0F],\)\+0x00'
550     # arch/s390/kernel/head.S
551     accept '\.lowcase:[\n]      \.byte 0x00\(,0x0[1-7]\)\+'"$sepx$blobpat*$eol"
552     # arch/s390/kernel/bitmap.S
553     accept '_zb_findmap:[\n]         \.byte  0\(,[123],0\)\+,4'"$sepx$blobpat*$eol"
554     accept '_sb_findmap:[\n]         \.byte  8\(,0,[123]\)\+,0'"$sepx$blobpat*$eol"
555     # arch/powerpc/lib/copyuser_64.S
556     accept '    \.section __ex_table,"a"'"$sepx$blobpat*"
557     # arch/powerpc/platforms/iseries/mf.c
558     accept '    memcpy(src, "\\x01\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00".*PROGxxxx'
559     # arch/ppc/platforms/ev64260.c
560     initnc 'static const unsigned int cpu_745x\[2\]\[16\] ='
561     # arch/alpha/lib/fls.c
562     initnc 'const unsigned char __flsm1_tab\[256\] ='
563     # drivers/input/misc/map_to_7segment.h
564     accept '#define _MAP_0_32_ASCII_SEG7_NON_PRINTABLE  \\[\n]  \(0,\)\+'"$eol"
565     # sound/oss/ad1848.c
566     initc '     static int      init_values_b\[\] ='
567     # drivers/input/keyboard/atkbd.c
568     initnc 'static unsigned char atkbd_set2_keycode\[512\] ='
569     # drivers/usb/serial/keyspan_pda.S and
570     # drivers/usb/serial/xircom_pgs.S
571     accept 'desc_config1:[\n]   \.byte 0x09, 0x02'"$sepx$blobpat*"
572     accept 'string_mfg:[\n]\?\(;\?      \.byte[^\n]*[\n]\)\+string_mfg_end:'
573     accept 'string_product:[\n]\?\(;\?  \.byte[^\n]*[\n]\)\+string_product_end:'
574     # drivers/media/video/pwc/pwc-nala.h
575     accept '   [/][*] \(SQCIF\|QSIF\|QCIF\|SIF\|CIF\|VGA\) [*][/][\n]   {[\n]      {'"$blobpat*"
576     # drivers/video/logo/*.ppm
577     accept 'P[13]\([\n]#[^\n]*\)*[\n]*\([\n][0-9 ]*\)\+'
578     # Documentation/specialix.txt
579     accept 'for i in [  0-9\\\n]*[\n]do'
580     # Documentation/cpu-freq/cpufreq-stats.txt
581     accept '         :   3600000   3400000   3200000   3000000   2800000 '
582     # Documentation/scsi/sym53c8xx_2.txt and
583     # Documentation/scsi/ncr53c8xx_2.txt
584     accept '00 00[\n]64 01[\n]8e 0b[\n][\n][0-9a-f \n]*fe fe'
585     accept '0f 00 08 08 64 00 0a 00 - id 0[\n]'"$blobpat*"
586     accept 'default nvram data:'"$sepx$blobpat*"
587     # Documentation/video4linux/sn9c102.txt
588     accept '0x0458     0x7025[\n]'"$blobpat*"
589     # Documentation/video4linux/et61x251.txt
590     accept '0x102c     0x6151[\n]'"$blobpat*"
591     # Documentation/video4linux/zc0301.txt
592     accept '0x041e     0x4017[\n]'"$blobpat*"
593     # Documentation/uml/UserModeLinux-HOWTO.txt
594     accept '  (gdb) x\/100x \$25[\n]  0x507d2434:     0x507d2434      0x00000000      0x08048000      0x080a4f8c'"$sepx$blobpat*"
595     # Documentation/isdn/README.inc
596     accept '      1  0  0  0  0x308'"$sepx$blobpat*"
597     # Documentation/sched-stats.txt
598     accept 'domain<N> <cpumask> 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36'"$eol"
599     # net/ipv4/ipvs/ip_vs_sync.c and
600     # net/sctp/sm_make_chunk.c and
601     # include/linux/sctp.h
602     accept '[ * ]*0                   1                   2                   3[\n][ *  ]*0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1'
603     # arch/x86/lguest/boot.c
604     accept ' \*  1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0'
605     # drivers/net/fealnx.c
606     ocomment '  [/][*] Configure the PCI bus bursts and FIFO thresholds.'
607     # drivers/hwmon/via686a.c
608     ocomment '[/][*] the original LUT values from Alex van Kaam <darkside@chello\.nl>'
609     # drivers/media/video/saa7114.c
610     initc 'static const unsigned char init\[\] = {[^;]*MODE=0 ;.*SAA_7114_NTSC_HSYNC_START'
611
612     # in 2.6.23 only
613     accept " Psize    Ipps       Tput     Rxint     Txint    Done     Ndone[\\n] ---------------------------------------------------------------\\([\\n][ 0-9]\\+\\)\\+$eol"
614     initnc 'static u_short ataplain_map\[NR_KEYS\] __initdata ='
615     initnc 'static RegInitializer initData\[\] __initdata ='
616     initnc '    static const unsigned char invert5\[\] ='
617     initnc 'static unsigned char alpa2target\[\] ='
618     initnc 'static unsigned char target2alpa\[\] ='
619     oprepline '#define INIT_THREAD [{0},]\+[    ]*\\[\n][       ]*[{0},]\+'
620     initnc 'static uint tas300\(1c\|4\)_\(master\|mixer\|treble\|bass\)_tab\[\]='
621     initnc 'static short dmasound_[au]law2dma16\[\] ='
622     initnc 'static const unsigned short DACVolTable\[101\] ='
623
624     # new in 2.6.25
625     accept "%canned_values = ([\\n]     \\([0-9]\\+ => \\[[     \\n]\\+\\(\\([0-9]\\+\\|'0x[0-9a-f]\\+'\\),[    \\n]*\\)*\\]\\(, \\|[\\n]\\)\\)*);"
626
627     # from 2.6.25-rc* patches
628     initnc '    int bcomm_irq\[3\*16\] ='
629     initnc '    static const int8 countLeadingZerosHigh\[\] ='
630     initnc 'static struct nic_qp_map nic_qp_mapping_[01]\[\] ='
631     initnc 'static struct regval ov_initvals\[\] ='
632     initnc 'static struct regval stk1125_initvals\[\] ='
633     initnc 'static u8 bnx2x_stats_len_arr\[BNX2X_NUM_STATS\] ='
634     initnc 'static const struct arb_line read_arb_data\[NUM_RD_Q\]\[MAX_RD_ORD + 1\] ='
635     initnc 'static const struct arb_line write_arb_data\[NUM_WR_Q\]\[MAX_WR_ORD + 1\] ='
636     oprepline '#define AR5K_RATES_11A '
637     oprepline '#define AR5K_RATES_11B '
638     oprepline '#define AR5K_RATES_11G '
639     oprepline '#define AR5K_RATES_TURBO '
640     oprepline '#define AR5K_RATES_XR '
641     initnc '            } blinkrates\[\] ='
642     initnc 'static const struct ath5k_ini ar5212_ini\[\] ='
643     initnc 'static const struct ath5k_ini_mode rf5413_ini_mode_end\[\] ='
644     initnc 'static const struct ath5k_ini_rf rfregs_5111\[\] ='
645     initnc 'static const struct ath5k_ini_rf rfregs_5112\[\] ='
646     initnc 'static const struct ath5k_ini_rf rfregs_5112a\[\] ='
647     initnc 'static const struct ath5k_ini_rf rfregs_5413\[\] ='
648     initnc 'const u\(8\|16\|32\) b43_ntab_\(\(adjustpower\|estimatepowerlt\|gainctl\|iqlt\|loftlt\|noisevar1\|tdi[24]0a\)[01]\|channelest\|frame\(lookup\|struct\)\|mcs\|pilot\|tdtrn\|tmap\)\[\] ='
649
650     # new in 2.6.26
651     initnc 'static u64 vec2off\[68\] =' arch/ia64/kvm/process.c
652     initnc "                    interrupts = <\\(0x\\)\\?3 \\(0x\\)\\?0 \\(0x\\)\\?0  $blobpat*>;" 'arch/powerpc/boot/dts/\(cm5200\|lite5200b\?\|kuroboxHG\|pcm030\|tqm5200\).dts'
653     initnc 'static const u32 crctab32\[\] =' arch/x86/boot/tools/build.c
654     initnc 'static struct mse2snr_tab \(vsb\|qam\(64\|256\)\)_mse2snr_tab\[\] =' drivers/media/dvb/frontends/au8522.c
655     initnc '} \(VSB\|QAM\)_mod_tab\[\] =' drivers/media/dvb/frontends/au8522.c
656     initnc '} itd1000_\(lpf_pga\|fre_values\)\[\] =' drivers/media/dvb/frontends/itd1000.c
657     initnc '} \(vsb\|qam\(64\|256\)\)_snr_tab\[\] =' drivers/media/dvb/frontends/s5h1411.c
658     initnc '} snr_tab\[\] =' drivers/media/dvb/frontends/tda10048.c
659     initnc 'static u32 reg_init_initialize\[\] =' drivers/media/video/saa717x.c
660     initnc 'static const u32 \(main\|gear\)_seedset\[BACKOFF_SEEDSET_ROWS\]\[BACKOFF_SEEDSET_LFSRS\] =' drivers/net/forcedeth.c
661     initnc 'static const struct ath5k_ini_mode rf24\(13\|25\)_ini_mode_end\[\] =' drivers/net/wireless/ath5k/initvals.c
662     initnc 'static const u16 wm9713_reg\[\] =' sound/soc/codecs/wm9713.c
663
664     # This looks suspicious, but it pretty much just sets stuff to zero.
665     initnc 'static __u8 mode8420\(pro\|con\)\[\] =' drivers/media/video/cs8420.h
666
667     # quite suspicious
668     # arch/parisc/kernel/perf_images.h
669     initc 'static uint32_t onyx_images\[\]\[PCXU_IMAGE_SIZE\/sizeof(uint32_t)\] __read_mostly ='
670     initc 'static uint32_t cuda_images\[\]\[PCXW_IMAGE_SIZE\/sizeof(uint32_t)\] __read_mostly ='
671
672     # These are regarded as ok
673     initnc 'static const u8 SN9C102_\(Y\|UV\)_QTABLE[01]\[64\] = {'
674     initnc '    static const u8 jpeg_header\[589\] = {'
675     accept '[   ]\{1,2\}err = sn9c102_write_const_regs(cam\(,[  \n]\+{0x[0-9a-fA-F][0-9a-fA-F], 0x[0-9a-fA-F][0-9a-fA-F]}\)*);'
676
677     # too lax?
678     initnc 'static yyconst \(flex_int\(16\|32\)_t\|\(\(short \)\?int\)\) yy_[^[]*\[[][0-9]*\] ='
679     initnc 'static const \(yytype_u\?int\(8\|16\)\|\(unsigned \)\?\(short\( int\)\?\|char\)\) yy[^[]*\[\] ='
680     initnc '\(\|        \)static \(const \|\)\(unsigned \(short\|char\)\|struct SiS_[^ ]*\) SiS[^[]*\(\[[] [*0-9]*\]\)\+ *='
681
682     initnc 'static const a3d_Hrtf_t A3dHrirZeros = {'
683     initnc 'static const a3d_Hrtf_t A3dHrirImpulse = {'
684     initnc 'static const a3d_Hrtf_t A3dHrirOnes = {'
685     initnc 'static const a3d_Hrtf_t A3dHrirSatTest = {'
686     initnc 'static const a3d_Hrtf_t A3dHrirDImpulse = {'
687     initnc 'static const a3d_ItdDline_t A3dItdDlineZeros = {'
688     initnc 'static auxxEqCoeffSet_t asEqCoefsNormal = {'
689     initnc 'static xtalk_dline_t const alXtalkDlineTest = {'
690     initnc 'static struct nand_ecclayout rtc_from4_nand_oobinfo = {'
691     initnc 'static const s16 tempLUT\[\] ='
692     initnc 'static const u8 viaLUT\[\] ='
693     initnc 'static struct { int xres, yres, left, right, upper, lower, hslen, vslen, vfreq; } timmings\[\] __initdata = {'
694     initnc 'static struct platinum_regvals platinum_reg_init_[0-9]* = {'
695     initnc '} sisfb_ddc[sf]modes\[\] __devinitdata ='
696     initnc 'static struct dvb_pll_desc [^\n]* = {'
697     initnc 'static u32 LABELPATCHES\[\] __attribute((unused)) ='
698
699     initnc 'static dbdev_tab_t dbdev_tab\[\] ='
700     accept '\(EXP\|LOG\|ATAN\)TBL:'"$sepx$blobpat*"
701     initnc 'static char fm_volume_table\[128\] ='
702     initnc 'unsigned int snd_gf1_scale_table\[SNDRV_GF1_SCALE_TABLE_SIZE\] ='
703     # remaining after original deblob_2_6_24, not fully checked
704
705     oprepline '#define OV51[18]_\(Y\|UV\)QUANTABLE {'
706     initnc '            static unsigned char const data_bit\[64\] ='
707     initnc '            static const u8 data_sbit\[32\] ='
708     initnc '    \.RightCoefs ='
709     initnc '    #define WakeupSeq    {'
710     initnc '    SetRate44100\[\] ='
711     initnc '    const short period\[32\] ='
712     initnc '    \(const static\|static const\) int desc_idx_table\[\] ='
713     initnc '    int prop_bcomm_irq\[3\*16\] ='
714     initnc '    static char logSlopeTable\[128\] ='
715     initnc '    static const int uc_\(dup\|word\)_table\[\]\[2\] ='
716     initnc '    static const struct mc7_timing_params mc7_timings\[\] ='
717     initnc '    static const u8 biphase_tbl\[\] ='
718     initnc '    static const u8 cs170\[7 \* 8\] ='
719     initnc '    static const u8 cs3[13]a\[8 \* 4\] ='
720     initnc '    static const u8 dramsr13\[12 \* 5\] ='
721     initnc '    static const u8 log10\[\] ='
722     initnc '    static const u8 mpeg_hdr_data\[\] ='
723     initnc '    static const u8 sdramtype\[13\]\[5\] ='
724     initnc '    static const u8 t\[\] ='
725     initnc '    static const unsigned int avg_pkts\[NCCTRL_WIN\] ='
726     initnc '    static const unsigned short ac97_defaults\[\] ='
727     initnc '    static int exp_lut\[256\] ='
728     initnc '    static u16 jpeg_tables\[\]\[70\] ='
729     initnc '    static u16 tables\[\] ='
730     initnc '    static u32 logMagTable\[128\] ='
731     initnc '    static u8 init_bufs\[13\]\[5\] ='
732     initnc '    static u8 sine \[\] ='
733     initnc '    static u_short geometry_table\[\]\[[45]\] ='
734     initnc '    static unsigned char CRCTable1\[\] ='
735     initnc '    static unsigned char CRCTable2\[\] ='
736     initnc '    static unsigned char default_colors\[\] ='
737     initnc '    static unsigned char iso_regs\[8\]\[4\] ='
738     initnc '    static unsigned char log_scale\[101\] ='
739     initnc '    static unsigned char msg\[\] ='
740     initnc '    static unsigned char static_pad\[\] ='
741     initnc '    static unsigned char table_alaw2ulaw\[\] ='
742     initnc '    static unsigned char table_ulaw2alaw\[\] ='
743     initnc '    u32 reg_boundaries\[\] ='
744     initnc '    u8 b\[\] ='
745     initnc '    uint8_t tx\[\] ='
746     initnc '    unsigned char saa7111_regs\[\] ='
747     initnc '    unsigned char sas_pcd_m_pg\[\] ='
748     initnc '    } modedb\[5\] ='
749     initnc '    } reg_tbl\[\] ='
750     initnc '    } vals\[\] ='
751     initnc '    } vm_devices\[\] ='
752     initnc '    static const code distfix\[32\] ='
753     initnc '    static const code lenfix\[512\] ='
754     initnc '  int poly\[\]='
755     initnc '  static const unsigned char asso_values\[\] ='
756     initnc '  static unsigned char asso_values\[\] ='
757     initnc '  } cards_ds\[\] ='
758     initnc '    static const int8 countLeadingZerosHigh\[\] ='
759     initnc '    static const unsigned short d\(base\|ext\)\[32\] ='
760     initnc '#define OV511_QUANTABLESIZE 64'
761     initnc 'BYTE BtCard::SRAMTable_\(NTSC\|PAL\)\[\] ='
762     initnc 'BYTE SRAMTable\[\]\[ 60 \] ='
763     accept 'irq_prio_[hdlc]*:'"$sepx$blobpat*"
764     initc '__u8 _ascebc\[256\] ='
765     initc '__u8 _ebc_tolower\[256\] ='
766     initc '__u8 _ebc_toupper\[256\] ='
767     initnc 'adapter_tag_info_t aic7[9x]xx_tag_info\[\] ='
768     initnc 'char dmasound_alaw2dma8\[\] ='
769     initnc 'char dmasound_ulaw2dma8\[\] ='
770     initnc 'const struct aper_size_info_16 agp3_generic_sizes\[AGP_GENERIC_SIZES_ENTRIES\] ='
771     initnc 'const u16 crc_itu_t_table\[256\] ='
772     initnc 'const u8 byte_rev_table\[256\] ='
773     initnc 'const u8 crc7_syndrome_table\[256\] ='
774     initnc 'const unsigned char INIT_2\[127\] ='
775     initnc 'int snd_sf_vol_table\[128\] ='
776     initnc 'static      u_char  irq_to_siubit\[\] ='
777     initnc 'static      u_char  irq_to_siureg\[\] ='
778     initnc 'static Byte_t RData\[RDATASIZE\] ='
779     initnc 'static __const__ __u16 gx_coeff\[256\] ='
780     initnc 'static __u8 init7121ntsc\[\] ='
781     initnc 'static __u8 init7121pal\[\] ='
782     initnc 'static byte capidtmf_leading_zeroes_table\[0x100\] ='
783     initnc 'static char channel_map_madi_ss\[HDSPM_MAX_CHANNELS\] ='
784     initnc 'static char coefficients\[NM_TOTAL_COEFF_COUNT \* 4\] ='
785     initnc 'static char ecc_syndrome_table\[\] ='
786     initnc 'static char isdn_audio_alaw_to_ulaw\[\] ='
787     initnc 'static char isdn_audio_ulaw_to_alaw\[\] ='
788     initnc 'static char mix_cvt\[101\] ='
789     initnc 'static char opl3_volume_table\[128\] ='
790     initnc 'static const RegInitializer initData\[\] __initdata ='
791     initnc 'static const __u16 crc10_table\[256\] ='
792     initnc 'static const __u32 crc_c\[256\] ='
793     initnc 'static const char zr360[56]0_dht\[0x1a4\] ='
794     initnc 'static const char zr360[56]0_dqt\[0x86\] ='
795     initnc 'static const fixp_t cos_table\[46\] ='
796     initnc 'static const int init_seq\[\] ='
797     initnc 'static const int mobile_vid_table\[32\] ='
798     initnc 'static const s16 snd_opl4_pitch_map\[0x600\] ='
799     initnc 'static const s8 \(b43\(\|legacy\)\|bcm43xx\)_tssi2dbm_[bg]_table\[\] ='
800     initnc 'static const s8 budtab\[256\] ='
801     initnc 'static const struct aper_size_info_32 u3_sizes\[8\] ='
802     initnc 'static const struct aper_size_info_8 via_generic_sizes\[9\] ='
803     initnc 'static const struct color clut_vga16\[16\] ='
804     initnc 'static const struct gain_entry gain_table\[2\]\[108\] ='
805     initnc 'static const struct mV_pos __initdata mobilevrm_mV\[32\] ='
806     initnc 'static const struct mV_pos __initdata vrm85_mV\[32\] ='
807     initnc 'static const struct menelaus_vtg_value vcore_values\[\] ='
808     initnc 'static const struct opl4_region regions_[0-9a-frums]*\[\] ='
809     initnc 'static const struct regval regval_table\[\] ='
810     initnc 'static const struct rf_channel rf_vals_5222\[\] ='
811     initnc 'static const struct rf_channel rf_vals_5225_2527\[\] ='
812     initnc 'static const struct rf_channel rf_vals_5226\[\] ='
813     initnc 'static const struct rf_channel rf_vals_bg\[\] ='
814     initnc 'static const struct rf_channel rf_vals_bg_2522\[\] ='
815     initnc 'static const struct rf_channel rf_vals_bg_2523\[\] ='
816     initnc 'static const struct rf_channel rf_vals_bg_2524\[\] ='
817     initnc 'static const struct rf_channel rf_vals_bg_2525\[\] ='
818     initnc 'static const struct rf_channel rf_vals_bg_2525e\[\] ='
819     initnc 'static const struct rf_channel rf_vals_bg_2528\[\] ='
820     initnc 'static const struct rf_channel rf_vals_noseq\[\] ='
821     initnc 'static const struct rf_channel rf_vals_seq\[\] ='
822     initnc 'static const u16 Sbox\[256\] ='
823     initnc 'static const u16 count_lut\[\] ='
824     # drivers/net/e1000e/phy.c
825     initnc 'static const u16 e1000_igp_2_cable_length_table\[\] ='
826     initnc 'static const u16 rtl8225bcd_rxgain\[\] ='
827     initnc 'static const u16 rtl8225z2_rxgain\[\] ='
828     initnc 'static const u16 stufftab\[5 \* 256\] ='
829     initnc 'static const u16 tkip_sbox\[256\] ='
830     initnc 'static const u16 wm8753_reg\[\] ='
831     initnc 'static const u32 SS[0-3]\[256\] ='
832     initnc 'static const u32 S[1-8]\[64\] ='
833     initnc 'static const u32 T[0-5]\[256\] ='
834     initnc 'static const u32 Tm\[24\]\[8\] ='
835     initnc 'static const u32 bass_table\[41\]\[5\] ='
836     initnc 'static const u32 bf_sbox\[256 \* 4\] ='
837     initnc 'static const u32 camellia_sp0222\[256\] ='
838     initnc 'static const u32 camellia_sp1110\[256\] ='
839     initnc 'static const u32 camellia_sp3033\[256\] ='
840     initnc 'static const u32 camellia_sp4404\[256\] ='
841     initnc 'static const u32 crc32c_table\[256\] ='
842     initnc 'static const u32 db_table\[101\] ='
843     initnc 'static const u32 m8xx_size_to_gray\[M8XX_SIZES_NO\] ='
844     initnc 'static const u32 mds\[4\]\[256\] ='
845     initnc 'static const u32 pc2\[1024\] ='
846     initnc 'static const u32 s[1-7]\[256\] ='
847     initnc 'static const u32 sb8\[256\] ='
848     initnc 'static const u32 tfrc_calc_x_lookup\[TFRC_CALC_X_ARRSIZE\]\[2\] ='
849     initnc 'static const u32 treble_table\[41\]\[5\] ='
850     initnc 'static const u64 [CT][0-7]\[256\] ='
851     initnc 'static const u64 sbox[1-4]\[256\] ='
852     initnc 'static const u64 sha512_K\[80\] =' 'crypto/sha512\(_generic\)\?.c'
853     initnc 'static const u8 Tr\[4\]\[8\] ='
854     initnc 'static const u8 aes_sbox\[256\] ='
855     initnc 'static const u8 calc_sb_tbl\[512\] ='
856     initnc 'static const u8 exp_to_poly\[492\] ='
857     initnc 'static const u8 legal_ansi_char_array\[0x40\] ='
858     initnc 'static const u8 parity\[\] ='
859     initnc 'static const u8 pc1\[256\] ='
860     initnc 'static const u8 poly_to_exp\[255\] ='
861     initnc 'static const u8 q[01]\[256\] ='
862     initnc 'static const u8 ratio_lut\[\] ='
863     initnc 'static const u8 rs\[256\] ='
864     initnc 'static const u8 rtl8225_agc\[\] ='
865     initnc 'static const u8 rtl8225_tx_power_cck\[\] ='
866     initnc 'static const u8 rtl8225_tx_power_cck_ch14\[\] ='
867     initnc 'static const u8 rtl8225z2_tx_gain_cck_ofdm\[\] ='
868     initnc 'static const u8 setup\[\] ='
869     initnc 'static const u8 speedtab \[3\]\[12\] ='
870     initnc 'static const u_char irq_to_siubit\[\] ='
871     initnc 'static const u_char irq_to_siureg\[\] ='
872     initnc 'static const u_char nand_ecc_precalc_table\[\] ='
873     initnc 'static const uint8_t parity\[256\] ='
874     initnc 'static const unsigned char \(UV\|Y\)_QUANTABLE\[64\] ='
875     initnc 'static const unsigned char __initdata mV_mobilevrm\[32\] ='
876     initnc 'static const unsigned char __initdata mV_vrm85\[32\] ='
877     initnc 'static const unsigned char barco_p1\[2\]\[9\]\[7\]\[3\] ='
878     initnc 'static const unsigned char bitcounts\[256\] ='
879     initnc 'static const unsigned char blue\[256\] ='
880     initnc 'static const unsigned char chktab[hl]\[256\] ='
881     initnc 'static const unsigned char comet_miireg2offset\[32\] ='
882     initnc 'static \(const \)\?unsigned char euc2sjisibm_g3upper_map\[\]\[2\] ='
883     initnc 'static const unsigned char green\[256\] ='
884     initnc 'static const unsigned char hash_table_ops\[64\*4\] ='
885     initnc 'static const unsigned char hid_keyboard\[256\] ='
886     initnc 'static const unsigned char mts_direction\[256\/8\] ='
887     initnc 'static const unsigned char red\[256\] ='
888     initnc 'static \(const \)\?unsigned char sjisibm2euc_map\[\]\[2\] ='
889     initnc 'static const unsigned char vol_cvt_datt\[128\] ='
890     initnc 'static const unsigned char wm_vol\[256\] ='
891     initnc 'static const unsigned int MulIdx\[16\]\[16\] ='
892     initnc 'static const unsigned int crctab32\[\] ='
893     initnc 'static const unsigned short crc_flex_table\[\] ='
894     initnc 'static const unsigned short logtable\[256\] ='
895     initnc 'static const unsigned short wd7000_iobase\[\] ='
896     initnc 'static const unsigned short x86_keycodes\[256\] ='
897     initnc 'static const unsigned table\[\] ='
898     initnc 'static int MV300_reg_8bit\[256\] ='
899     initnc 'static int fifo_map\[\]\[MAX_TX_FIFOS\] ='
900     initnc 'static int initial_lfsr\[\] ='
901     initnc 'static int log_tbl\[129\] ='
902     initnc 'static int logitech_expanded_keymap\[LOGITECH_EXPANDED_KEYMAP_SIZE\] ='
903     initnc 'static int miro_fmtuner\[\]  ='
904     initnc 'static int miro_tunermap\[\] ='
905     initnc 'static int register_size\[\] ='
906     initnc 'static int reserve_list\[MAX_RES_ARGS\] ='
907     initnc 'static int reverse6\[64\] ='
908     initnc 'static short attack_time_tbl\[128\] ='
909     initnc 'static short beep_wform\[256\] ='
910     initnc 'static short decay_time_tbl\[128\] ='
911     initnc 'static short isdn_audio_[ua]law_to_s16\[\] ='
912     initnc 'static struct cipher_testvec anubis_cbc_dec_tv_template\[\] ='
913     initnc 'static struct cipher_testvec anubis_cbc_enc_tv_template\[\] ='
914     initnc 'static struct cipher_testvec anubis_dec_tv_template\[\] ='
915     initnc 'static struct cipher_testvec anubis_enc_tv_template\[\] ='
916     initnc 'static struct cipher_testvec camellia_cbc_dec_tv_template\[\] ='
917     initnc 'static struct cipher_testvec camellia_cbc_enc_tv_template\[\] ='
918     initnc 'static struct cipher_testvec camellia_dec_tv_template\[\] ='
919     initnc 'static struct cipher_testvec camellia_enc_tv_template\[\] ='
920     initnc 'static struct cipher_testvec cast6_dec_tv_template\[\] ='
921     initnc 'static struct cipher_testvec cast6_enc_tv_template\[\] ='
922     initnc 'static struct cipher_testvec serpent_dec_tv_template\[\] ='
923     initnc 'static struct cipher_testvec serpent_enc_tv_template\[\] ='
924     initnc 'static struct cipher_testvec tea_dec_tv_template\[\] ='
925     initnc 'static struct cipher_testvec tea_enc_tv_template\[\] ='
926     initnc 'static struct cipher_testvec tf_dec_tv_template\[\] ='
927     initnc 'static struct cipher_testvec tf_enc_tv_template\[\] ='
928     initnc 'static struct cipher_testvec tnepres_dec_tv_template\[\] ='
929     initnc 'static struct cipher_testvec xeta_dec_tv_template\[\] ='
930     initnc 'static struct cipher_testvec xeta_enc_tv_template\[\] ='
931     initnc 'static struct cipher_testvec xtea_dec_tv_template\[\] ='
932     initnc 'static struct cipher_testvec xtea_enc_tv_template\[\] ='
933     initnc 'static struct comp_testvec deflate_decomp_tv_template\[\] ='
934     initnc 'static struct hash_testvec aes_xcbc128_tv_template\[\] =' crypto/tcrypt.h
935     initnc 'static struct hash_testvec crc32c_tv_template\[\] ='
936     initnc 'static struct hash_testvec hmac_sha256_tv_template\[\] =' crypto/tcrypt.h
937     initnc 'static struct hash_testvec sha256_tv_template\[\] ='
938     initnc 'static struct hash_testvec sha384_tv_template\[\] ='
939     initnc 'static struct hash_testvec sha512_tv_template\[\] ='
940     initnc 'static struct hash_testvec wp256_tv_template\[\] ='
941     initnc 'static struct hash_testvec wp384_tv_template\[\] ='
942     initnc 'static struct hash_testvec wp512_tv_template\[\] ='
943     initnc 'static struct iwl\(3945\)\?_tx_power power_gain_table\[2\]\[IWL_MAX_GAIN_ENTRIES\] ='
944     initnc 'static struct ovcamchip_regvals regvals_init_\(76be\|7[16]20\|7x10\)\[\] ='
945     initnc 'static struct regval_list ov7670_default_regs\[\] ='
946     initnc 'static struct s_c2 SetRate48000\[\] ='
947     initnc 'static struct tea6420_multiplex TEA6420_line\[MXB_AUDIOS+1\]\[2\] ='
948     initnc 'static struct wm_info i810_wm_16_100\[\] ='
949     initnc 'static struct wm_info i810_wm_16_133\[\] ='
950     initnc 'static struct wm_info i810_wm_24_100\[\] ='
951     initnc 'static struct wm_info i810_wm_24_133\[\] ='
952     initnc 'static struct wm_info i810_wm_8_100\[\] ='
953     initnc 'static struct wm_info i810_wm_8_133\[\] ='
954     initnc 'static struct { struct fb_bitfield red, green, blue, transp; int bits_per_pixel; } colors\[\] ='
955     initnc 'static u16 asEqCoefsPipes\[64\] ='
956     initnc 'static u16 asEqCoefsZeros\[50\] ='
957     initnc 'static u16 asEqOutStateZeros\[48\] ='
958     initnc 'static u16 default_key_map \[256\] ='
959     initnc 'static u16 eq_levels\[64\] ='
960     initnc 'static u32  crc32tab\[\] __attribute__ ((aligned(8))) ='
961     initnc 'static u32 ac3_frames\[3\]\[32\] ='
962     initnc 'static u32 adwDecim8\[33\] ='
963     initnc 'static u32 h_prescale\[64\] ='
964     initnc 'static u32 v_gain\[64\] ='
965     initnc 'static u8 cvs_time_value\[\]\[XFER_UDMA_6 - XFER_UDMA_0 + 1\] ='
966     initnc 'static u8 SRAM_Table\[\]\[60\] ='
967     initnc 'static u8 act_time_value\[\]\[8\] ='
968     initnc 'static u8 alps_tdee4_stv0297_inittab\[\] ='
969     initnc 'static u8 bnx2_5706_stats_len_arr\[BNX2_NUM_STATS\] ='
970     initnc 'static u8 bnx2_5708_stats_len_arr\[BNX2_NUM_STATS\] ='
971     initnc 'static u8 flit_desc_map\[\] ='
972     initnc 'static u8 ini_time_value\[\]\[8\] ='
973     initnc 'static u8 init_tab \[\] ='
974     initnc 'static u8 mac_reader\[\] ='
975     initnc 'static u8 mt2131_config1\[\] =' drivers/media/dvb/frontends/mt2131.c # <= 2.6.25
976     initnc 'static u8 mt2131_config1\[\] =' drivers/media/common/tuners/mt2131.c # >= 2.6.26
977     initnc 'static u8 mt2266_init2\[\] =' drivers/media/dvb/frontends/mt2266.c # <= 2.6.25
978     initnc 'static u8 mt2266_init2\[\] =' drivers/media/common/tuners/mt2266.c # >= 2.6.26
979     initnc 'static u8 opera1_inittab\[\] ='
980     initnc 'static u8 rco_time_value\[\]\[8\] ='
981     initnc 'static u8 saa7113_init_regs\[\] ='
982     initnc 'static u8 samsung_tbmu24112_inittab\[\] ='
983     initnc 'static u8 tas3004_treble_table\[\] ='
984     initnc 'static u8 w1_crc8_table\[\] ='
985     initnc 'static u_char const data_sizes_32\[32\] ='
986     initnc 'static u_long ident_map\[32\] ='
987     initnc 'static u_short alt_map\[NR_KEYS\] ='
988     initnc 'static u_short altgr_map\[NR_KEYS\] ='
989     initnc 'static u_short ctrl_alt_map\[NR_KEYS\] ='
990     initnc 'static u_short ctrl_map\[NR_KEYS\] *='
991     initnc 'static u_short shift_ctrl_map\[NR_KEYS\] ='
992     initnc 'static u_short shift_map\[NR_KEYS\] *='
993     initnc 'static uchar perm1\[56\] ='
994     initnc 'static uchar perm2\[48\] ='
995     initnc 'static uchar perm3\[64\] ='
996     initnc 'static uchar perm4\[48\] ='
997     initnc 'static uchar perm5\[32\] ='
998     initnc 'static uchar perm6\[64\] ='
999     initnc 'static uchar sbox\[8\]\[4\]\[16\] ='
1000     initnc 'static uint16_t crc_table\[256\] ='
1001     initnc 'static uint8_t lpfcAlpaArray\[\] ='
1002     initnc 'static \(const \)\?uint8_t seqprog\[\] ='
1003     initnc 'static unsigned char V110_OffMatrix_9600\[\] ='
1004     initnc 'static unsigned char V110_OnMatrix_9600\[\] ='
1005     initnc 'static unsigned char a2232_65EC02code\[\] ='
1006     initnc 'static unsigned char atkbd_set3_keycode\[512\] ='
1007     initnc 'static unsigned char atkbd_unxlate_table\[128\] ='
1008     initnc 'static unsigned char banner_table\[\] ='
1009     initnc 'static unsigned char bootlogo_bits\[\] ='
1010     initnc 'static unsigned char bus2core_8260\[\] ='
1011     initnc 'static unsigned char bus2core_8280\[\] ='
1012     initnc 'static unsigned char caseorder\[256\] ='
1013     initnc 'static unsigned char crystal_key\[\] ='
1014     initnc 'static unsigned char dsp_ulaw\[\] ='
1015     initnc 'static unsigned char expressiontab\[128\] ='
1016     initnc 'static unsigned char header2\[\] ='
1017     initnc 'static unsigned char hidp_keycode\[256\] ='
1018     initnc 'static unsigned char irq_xlate\[32\] ='
1019     initnc 'static unsigned char nkbd_keycode\[128\] ='
1020     initnc 'static unsigned char pan_volumes\[256\] ='
1021     initnc 'static unsigned char parm_block\[32\] ='
1022     initnc 'static unsigned char raw3270_ebcgraf\[64\] ='
1023     initnc 'static unsigned char rfcomm_crc_table\[256\] ='
1024     initnc 'static unsigned char rwa_unlock\[\] __initdata ='
1025     initnc 'static unsigned char seqprog\[\] ='
1026     initnc 'static unsigned char snd_opl4_volume_table\[128\] ='
1027     initnc 'static unsigned char splash_bits\[\] ='
1028     initnc 'static unsigned char sunkbd_keycode\[128\] ='
1029     initnc 'static unsigned char ufs_fragtable_8fpb\[\] ='
1030     initnc 'static unsigned char ufs_fragtable_other\[\] ='
1031     initnc 'static unsigned char ulaw_dsp\[\] ='
1032     initnc 'static unsigned char usb_kbd_keycode\[256\] ='
1033     initnc 'static unsigned char vga_font\[cmapsz\] \(BTDATA \|\)='
1034     initnc 'static unsigned char voltab[12]\[128\] ='
1035     initnc 'static unsigned char vpd89_data\[\] ='
1036     initnc 'static unsigned char xtkbd_keycode\[256\] ='
1037     initnc 'static unsigned int ac3_bitrates\[32\] ='
1038     initnc 'static unsigned int bass_volume_table\[\] ='
1039     initnc 'static unsigned int bitrates\[3\]\[16\] ='
1040     initnc 'static unsigned int isa_dma_port\[8\]\[7\] ='
1041     initnc 'static unsigned int master_volume_table\[\] ='
1042     initnc 'static unsigned int mixer_volume_table\[\] ='
1043     initnc 'static unsigned int pan_table\[63\] ='
1044     initnc 'static unsigned int snapper_bass_volume_table\[\] ='
1045     initnc 'static unsigned int snapper_treble_volume_table\[\] ='
1046     initnc 'static unsigned int treble_volume_table\[\] ='
1047     initnc 'static unsigned int valid_mem\[\] ='
1048     initnc 'static unsigned long arthur_to_linux_signals\[32\] ='
1049     initnc 'static unsigned long shmedia_opcode_table\[64\] ='
1050     initnc 'static unsigned nv\([34]\|10\)TableP\(FIFO\|GRAPH\|RAMIN\)\[\]\[2\] ='
1051     initnc 'static unsigned short fcstab\[256\] ='
1052     initnc 'static unsigned short init[1234]\[128\] \/\*__devinitdata\*\/ ='
1053     initnc 'static unsigned short log_table\[LOG_TABLE_SIZE\*2\] ='
1054     initnc 'static unsigned short rc_ioport\[\] ='
1055     initnc 'static unsigned short translations\[\]\[256\] ='
1056     initnc 'static unsigned short treble_parm\[12\]\[9\] ='
1057     initnc 'struct RGBColors TextCLUT\[256\] ='
1058     initnc 'struct VgaRegs GenVgaTextRegs\[NREGS+1\] ='
1059     initnc 'struct battery_thresh  spitz_battery_levels_noac\[\] ='
1060     initnc 'struct battery_thresh spitz_battery_levels_acin\[\] ='
1061     initnc 'struct fb_bitfield rgb_bitfields\[\]\[4\] ='
1062     initnc 'struct mode_registers std_modes\[\] ='
1063     initnc 'struct vmode_attr vmode_attrs\[VMODE_MAX\] ='
1064     initnc 'u16 const crc16_table\[256\] ='
1065     initnc 'u16 const crc_ccitt_table\[256\] ='
1066     initnc 'u16 hfsplus_compose_table\[\] ='
1067     initnc 'u16 hfsplus_decompose_table\[\] ='
1068     initnc 'u_char const data_sizes_16\[32\] ='
1069     initnc 'u_short alt_map\[NR_KEYS\] ='
1070     initnc 'u_short altgr_map\[NR_KEYS\] ='
1071     initnc 'u_short ctrl_alt_map\[NR_KEYS\] ='
1072     initnc 'u_short ctrl_map\[NR_KEYS\] *='
1073     initnc 'u_short plain_map\[NR_KEYS\] *='
1074     initnc 'u_short shift_ctrl_map\[NR_KEYS\] ='
1075     initnc 'u_short shift_map\[NR_KEYS\] *='
1076     initnc 'uint patch_2[0f]00\[\] ='
1077     initnc '\(uint16_t\|u16\) e1000_igp_cable_length_table\[IGP01E1000_AGC_LENGTH_TABLE_SIZE\] =' drivers/net/e1000/e1000_hw.c # u16 on 2.6.26
1078     initnc '\(uint16_t\|u16\) e1000_igp_2_cable_length_table\[IGP02E1000_AGC_LENGTH_TABLE_SIZE\] =' drivers/net/e1000/e1000_hw.c # u16 on 2.6.26
1079     initnc '} euc2sjisibm_jisx0212_map\[\] ='
1080     initnc '} freq\[\] ='
1081     initnc '} hps_h_coeff_tab \[\] ='
1082     initnc '} hps_v_coeff_tab \[\] ='
1083     initnc '} init_tab\[\] ='
1084     initnc '} maven_gamma\[\] ='
1085     initnc '} mem_table\[\] ='
1086     initnc '} mxb_saa7740_init\[\] ='
1087     initnc '} pll_table\[\] =' drivers/video/geode/lxfb_ops.c
1088     initnc '} qam256_snr_tab\[\] ='
1089     initnc '} qam64_snr_tab\[\] ='
1090     initnc '} sil_port\[\] ='
1091     initnc '} vsb_snr_tab\[\] ='
1092     initnc '} yss225_registers\[\] __devinitdata ='
1093     ;;
1094
1095   */patch*2.6.27-rc* | */patch*2.6.26-git* | */git-linus.diff)
1096     accept '    \.section __ex_table,"a"'"$sepx$blobpat*" 'arch/x86/lib/copy_user_\(nocache_\)\?64.S'
1097     initnc 'static struct cipher_testvec des3_ede_cbc_\(enc\|dec\)_tv_template\[\] =' crypto/tcrypt.h
1098
1099     accept 'desc_config1:[\n]   \.byte 0x09, 0x02'"$sepx$blobpat*" 'firmware/keyspan_pda/\(keyspan_pda\|xircom_pgs\).S'
1100     accept 'string_mfg:[\n]\?\(;\?      \.byte[^\n]*[\n]\)\+string_mfg_end:' 'firmware/keyspan_pda/\(keyspan_pda\|xircom_pgs\).S'
1101     accept 'string_product:[\n]\?\(;\?  \.byte[^\n]*[\n]\)\+string_product_end:' 'firmware/keyspan_pda/\(keyspan_pda\|xircom_pgs\).S'
1102     accept ':03000000020200F9[\n]:040023000205\(9B0037\|5F0073\)[\n]\(:050030000000000000CB[\n]\|:0400430002010000B6[\n]\)*'"$sepx$blobpat*"'[\n]:\(0E06E0006400670065007400060334003700F4\|0606A000060334003700E0\)[\n]:00000001FF[\n]' 'firmware/keyspan_pda/\(keyspan_pda\|xircom_pgs\).HEX'
1103     initnc 'static const u16 uda1380_reg\[UDA1380_CACHEREGNUM\] =' sound/soc/codecs/uda1380.c
1104     initnc 'static const u16 wm8510_reg\[WM8510_CACHEREGNUM\] =' sound/soc/codecs/wm8510.c
1105
1106     initnc '    static int sysdiv_to_div_x_2\[\] =' arch/powerpc/platforms/512x/clock.c
1107     initnc 'static const __u16 t10_dif_crc_table\[256\] =' lib/crc-t10dif.c
1108     ;;
1109     
1110   */patch*2.6.26-rc*)
1111     initnc 'static u64 vec2off\[68\] =' arch/ia64/kvm/process.c
1112     initnc "                    interrupts = <\\(0x\\)\\?3 \\(0x\\)\\?0 \\(0x\\)\\?0  $blobpat*>;" 'arch/powerpc/boot/dts/\(cm5200\|lite5200b\?\|kuroboxHG\|pcm030\|tqm5200\).dts'
1113     initnc 'static const u32 crctab32\[\] =' arch/x86/boot/tools/build.c
1114     initnc 'static const u64 sha512_K\[80\] =' 'crypto/sha512\(_generic\)\?.c'
1115     initnc 'static struct hash_testvec \(hmac_sha\(224\|256\)\|aes_xcbc128\|crc32c\)_tv_template\[\] =' crypto/tcrypt.h
1116     initnc 'static struct cipher_testvec \(bf_cbc\|serpent\|tnepres\|aes\(_\(cbc\|ctr\|xts\)\)\?\|x\?tea\|anubis\(_cbc\)\?\|xeta\|camellia_cbc\|cts_mode\)_\(enc\|dec\)_tv_template\[\] =' crypto/tcrypt.h
1117     initnc '            \.\(digest\|entries\|input\|key\|output\|plaintext\|result\)[   ]*= [{"]' crypto/tcrypt.h
1118     initnc 'static const u8 speedtab \[3\]\[12\] =' drivers/ide/legacy/umc8672.c
1119     initnc 'static u8 cvs_time_value\[\]\[XFER_UDMA_6 - XFER_UDMA_0 + 1\] =' drivers/ide/pci/sis5513.c
1120     initnc 'static u8 \(ini\|act\|rco\)_time_value\[\]\[8\] =' drivers/ide/pci/sis5513.c
1121     initnc 'static u8 mt2131_config1\[\] =' drivers/media/common/tuners/mt2131.c
1122     initnc 'static u8 mt2266_init2\[\] =' drivers/media/common/tuners/mt2266.c
1123     initnc 'u16 e1000_igp_cable_length_table\[IGP01E1000_AGC_LENGTH_TABLE_SIZE\] =' drivers/net/e1000/e1000_hw.c
1124     initnc '\(uint16_t\|u16\) e1000_igp_2_cable_length_table\[IGP02E1000_AGC_LENGTH_TABLE_SIZE\] =' drivers/net/e1000/e1000_hw.c # u16 on 2.6.26
1125     oprepline '#define AR5K_RATES_11[ABG] ' drivers/net/wireless/ath5k/ath5k.h
1126     oprepline ' { 1, MODULATION_XR, 1000, 2, 139, 1 },  ' drivers/net/wireless/ath5k/ath5k.h
1127     initnc 'static const struct ath5k_ini_mode rf\(5413\|24\(13\|25\)\)_ini_mode_end\[\] =' drivers/net/wireless/ath5k/initvals.c
1128     initnc ';[/][*]@@ -[0-9]*,[0-9]* +[0-9]*,[0-9]* @@ static const yytype_u\?int\(8\|16\) yy[^\n []*\[\] =[*][/];' scripts/kconfig/zconf.tab.c_shipped
1129     initnc 'static const yytype_u\?int\(8\|16\) yy[^\n []*\[\] =' scripts/kconfig/zconf.tab.c_shipped
1130     # new in 2.6.26
1131     initnc 'static struct mse2snr_tab \(vsb\|qam\(64\|256\)\)_mse2snr_tab\[\] =' drivers/media/dvb/frontends/au8522.c
1132     initnc '} \(VSB\|QAM\)_mod_tab\[\] =' drivers/media/dvb/frontends/au8522.c
1133     initnc '} itd1000_\(lpf_pga\|fre_values\)\[\] =' drivers/media/dvb/frontends/itd1000.c
1134     initnc '} \(vsb\|qam\(64\|256\)\)_snr_tab\[\] =' drivers/media/dvb/frontends/s5h1411.c
1135     initnc '} snr_tab\[\] =' drivers/media/dvb/frontends/tda10048.c
1136     initnc '    static const u8 biphase_tbl\[\] =' drivers/media/video/cx18/cx18-av-vbi.c
1137     initnc '    static const u8 mpeg_hdr_data\[\] =' drivers/media/video/cx18/cx18-vbi.c
1138     initnc 'static u32 reg_init_initialize\[\] =' drivers/media/video/saa717x.c
1139     initnc '    } vals\[\] =' drivers/media/video/saa717x.c
1140     initnc 'static const u32 \(main\|gear\)_seedset\[BACKOFF_SEEDSET_ROWS\]\[BACKOFF_SEEDSET_LFSRS\] =' drivers/net/forcedeth.c
1141     blob '^unsigned char \(IDX_ACTIVATE_\(READ\|WRITE\)\|\(CM\|ULP\)_\(ENABLE\|SETUP\)\|DM_ACT\) = '"$sepx$blobseq*$sepx;" drivers/s390/net/qeth_core_mpc.c # from drivers/s390/net/qeth_mpc.c in 2.6.25
1142     initnc '} pll_table\[\] =' drivers/video/geode/lxfb_ops.c
1143     accept "  { 0x00014284,  19688 },[\n]  { 0x00011104,  20400 },[\n]  { $blobpat* }," drivers/video/geode/lxfb_ops.c # won't be necessary in rc3
1144     initnc 'static const u16 wm9713_reg\[\] =' sound/soc/codecs/wm9713.c
1145     accept 'P[13]\([\n]#[^\n]*\)*[\n]*\([\n][0-9 ]*\)\+' drivers/video/logo/logo_blackfin_clut224.ppm
1146     ;;
1147   */patch*2.6.25-rc*)
1148     initnc ';[/][*]@@ -[0-9]*,[0-9]* +[0-9]*,[0-9]* @@ static uchar sbox\[8\]\[4\]\[16\] = {[*][/];'
1149     accept '    \$3 = {{pge = {{ste = {\(\([0-9][0-9a-fx{},\n   ]*\|\(pge\|ste\) =\|<repeats [0-9]\+ times>\)[{},\n     ]*\)*<repeats 11 times>}'"$eol"
1150     initnc 'static yyconst flex_int\(16\|32\)_t yy_[^[]*\[[0-9]*\] ='
1151     initnc 'static const yytype_u\?int\(8\|16\) yy[^[]*\[\] ='
1152     initnc '    int bcomm_irq\[3\*16\] ='
1153     initnc '    static const int8 countLeadingZerosHigh\[\] ='
1154     initnc 'static unsigned long shmedia_opcode_table\[64\] ='
1155     initnc 'u_char const data_sizes_16\[32\] ='
1156     initnc 'static u_char const data_sizes_32\[32\] ='
1157     initnc '            \.\(digest\|entries\|input\|key\|output\|plaintext\|result\)[   ]*= {'
1158     initnc 'static struct [^\n]*_testvec [^\n]*_tv_template\[\] ='
1159     initnc 'static struct nic_qp_map nic_qp_mapping_[01]\[\] ='
1160     initnc 'static u8 mt2266_init2\[\] ='
1161     initnc 'static struct regval ov_initvals\[\] ='
1162     initnc 'static struct regval stk1125_initvals\[\] ='
1163     initnc 'static u8 bnx2x_stats_len_arr\[BNX2X_NUM_STATS\] ='
1164     initnc 'static const struct arb_line read_arb_data\[NUM_RD_Q\]\[MAX_RD_ORD + 1\] ='
1165     initnc 'static const struct arb_line write_arb_data\[NUM_WR_Q\]\[MAX_WR_ORD + 1\] ='
1166     initnc 'uint16_t e1000_igp_cable_length_table\[IGP01E1000_AGC_LENGTH_TABLE_SIZE\] ='
1167     initnc 'uint16_t e1000_igp_2_cable_length_table\[IGP02E1000_AGC_LENGTH_TABLE_SIZE\] ='
1168     oprepline '#define AR5K_RATES_11\([ABG]\|TURBO\|XR\) ' drivers/net/wireless/ath5k/ath5k.h
1169     initnc '            } blinkrates\[\] ='
1170     initnc 'static const struct ath5k_ini ar5212_ini\[\] ='
1171     initnc 'static const struct ath5k_ini_rf rfregs_5111\[\] ='
1172     initnc 'static const struct ath5k_ini_rf rfregs_5112\[\] ='
1173     initnc 'static const struct ath5k_ini_rf rfregs_5112a\[\] ='
1174     initnc 'static const struct ath5k_ini_rf rfregs_5413\[\] ='
1175     initnc 'static const u16 rtl8225bcd_rxgain\[\] ='
1176     initnc 'static const u8 rtl8225_agc\[\] ='
1177     initnc 'static const u8 rtl8225_tx_power_cck\[\] ='
1178     initnc 'static const u8 rtl8225_tx_power_cck_ch14\[\] ='
1179     initnc 'static const u16 rtl8225z2_rxgain\[\] ='
1180     accept '     \( 49,\)*[\n]\([ 0-9,]*[\n]\)*     \( 49,\)*'"$eol"
1181     initnc 'static const unsigned char wm_vol\[256\] ='
1182     accept 'domain<N> <cpumask> 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36'"$eol"
1183     # drivers/net/e1000e/phy.c
1184     initnc 'static const u16 e1000_igp_2_cable_length_table\[\] ='
1185     accept '    24 => \[[\n]\([^\n]*[\n]\)*     \]\(, [0-9]\+ => \[\)\?'"$eol"
1186     accept '            '"'"'0x[^\n]*[\n]\([^\n]*[\n]\)*        \]\(, [0-9]\+ => \[\)\?'"$eol"
1187     initnc 'const u\(8\|16\|32\) b43_ntab_\(\(adjustpower\|estimatepowerlt\|gainctl\|iqlt\|loftlt\|noisevar1\|tdi[24]0a\)[01]\|channelest\|frame\(lookup\|struct\)\|mcs\|pilot\|tdtrn\|tmap\)\[\] ='
1188     ;;
1189   */nouveau-drm*.patch)
1190     initnc '\(static uint32_t\|}\) nv04_graph_ctx_regs \[\] ='
1191     initnc 'static int nv10_graph_ctx_regs \[\] ='
1192
1193     # Although the developers of the drivers are not trying to stop
1194     # anyone from modifying it or understanding it, they acknowledge
1195     # these are bits of code, obtained through mmio interactions.
1196     # This means these blobs are not source code, AND original authors
1197     # of the blobs have power to stop others from modifying them.
1198     # Non-Free software, for sure.
1199
1200     # initnc 'static uint32_t nv\(4[013467ace]\|49_4b\|8[46]\)_ctx_\(voodoo\|prog\)\[\] ='
1201     ;;
1202   */linux-2.6-lirc.patch)
1203     initnc 'const unsigned char map_table\[\] ='
1204     ;;
1205   */linux-2.6-modsign-mpilib.patch)
1206     initnc 'const unsigned char __clz_tab\[\] ='
1207     ;;
1208   */linux-2.6-wireless*.patch)
1209     initnc 'const u\(8\|16\|32\) b43_ntab_\(\(adjustpower\|estimatepowerlt\|gainctl\|iqlt\|loftlt\|noisevar1\|tdi[24]0a\)[01]\|channelest\|frame\(lookup\|struct\)\|mcs\|pilot\|tdtrn\|tmap\)\[\] ='
1210     initnc 'static const s8 \(b43\(legacy\)\?\|bcm43xx\)_tssi2dbm_[bg]_table\[\] ='
1211     initnc 'static struct iwl\(3945\)\?_tx_power power_gain_table\[2\]\[IWL_MAX_GAIN_ENTRIES\] ='
1212     initnc 'static const struct gain_entry gain_table\[2\]\[108\] ='
1213     initnc 'static const struct rf_channel rf_vals_5222\[\] ='
1214     initnc 'static const struct rf_channel rf_vals_5225_2527\[\] ='
1215     initnc 'static const struct rf_channel rf_vals_5226\[\] ='
1216     initnc 'static const struct rf_channel rf_vals_bg\[\] ='
1217     initnc 'static const struct rf_channel rf_vals_bg_2522\[\] ='
1218     initnc 'static const struct rf_channel rf_vals_bg_2523\[\] ='
1219     initnc 'static const struct rf_channel rf_vals_bg_2524\[\] ='
1220     initnc 'static const struct rf_channel rf_vals_bg_2525\[\] ='
1221     initnc 'static const struct rf_channel rf_vals_bg_2525e\[\] ='
1222     initnc 'static const struct rf_channel rf_vals_bg_2528\[\] ='
1223     initnc 'static const struct rf_channel rf_vals_noseq\[\] ='
1224     initnc 'static const struct rf_channel rf_vals_seq\[\] ='
1225     initnc '    static const u8 t\[\] ='
1226     initnc 'static const u16 rtl8225bcd_rxgain\[\] ='
1227     initnc 'static const u8 rtl8225_agc\[\] ='
1228     initnc 'static const u8 rtl8225_tx_power_cck\[\] ='
1229     initnc 'static const u8 rtl8225_tx_power_cck_ch14\[\] ='
1230     initnc 'static const u16 rtl8225z2_rxgain\[\] ='
1231     initnc 'static const struct ath5k_ini_rf rfregs_5111\[\] ='
1232     initnc 'static const struct ath5k_ini_rf rfregs_5112\[\] ='
1233     initnc 'static const struct ath5k_ini_rf rfregs_5112a\[\] ='
1234     initnc 'static const struct ath5k_ini_rf rfregs_5413\[\] ='
1235     oprepline '#define AR5K_RATES_11A '
1236     oprepline '#define AR5K_RATES_11B '
1237     oprepline '#define AR5K_RATES_11G '
1238     oprepline '#define AR5K_RATES_TURBO '
1239     oprepline '#define AR5K_RATES_XR '
1240     initnc 'static const struct ath5k_ini ar5212_ini\[\] ='
1241     initnc 'static const struct ath5k_ini_mode rf\(5413\|24\(13\|25\)\)_ini_mode_end\[\] =' drivers/net/wireless/ath5k/initvals.c # ?
1242     initnc '            } blinkrates\[\] ='
1243
1244     initnc 'static const u8 rtl8225z2_agc\[\] =' drivers/net/wireless/rtl8187_rtl8225.c
1245     initnc 'static const u8 rtl8225z2_ofdm\[\] =' drivers/net/wireless/rtl8187_rtl8225.c
1246     initnc 'static const u8 rtl8225z2_tx_power_cck\[\] =' drivers/net/wireless/rtl8187_rtl8225.c
1247     initnc 'static const u8 rtl8225z2_tx_power_cck_ch14\[\] =' drivers/net/wireless/rtl8187_rtl8225.c
1248
1249     # git logs
1250     accept '   sudo modprobe ath5k debug=0x00000400[\n][        ]*[\n]\([       ]*Band[^\n]*[\n]\([     ]*\(\(channels\|rates\):\|[-    0-9a-f]*\|\[\.\.\. etc \]\)[\n]\)\+\)\+       540 000c 0000 0000'
1251     oprepline ' { 1, MODULATION_XR, 3000, 1, 150, 3 },'
1252     ;;
1253   */linux-2.6-drm-i915-modeset.patch)
1254     initnc 'static const u32 filter_table\[\] ='
1255     ;;
1256   */linux-2.6-netdev-e1000e*.patch)
1257     # drivers/net/e1000e/phy.c
1258     initnc 'static const u16 e1000_igp_2_cable_length_table\[\] ='
1259     ;;
1260   esac
1261 }  
1262
1263 # Regular expression that matches a literal constant.
1264 constx="[0-9][0-9a-fA-FxX]*"
1265 # Regular expression that matches a separator between consecutive
1266 # literal constants.
1267 sepx="\\([,:{}  \\nLlUu\"\'\\\\]\\+[xX\$]\\?\\|[        \\n]*[.][a-zA-Z][a-zA-Z0-9]*[   ]\\+[\$]\\?\\)"
1268
1269 # Regular expression that matches a continuation of a blob, after an
1270 # initial constant.  *, \+ and \? can be safely appended to it without
1271 # \(\)s.
1272 blobcont="\\($sepx$constx\\)"
1273
1274 # Regular expression that matches the initial constant of a blob plus
1275 # its continuation.  *, \+ and \? can be safely appended to it without
1276 # \(\)s.
1277 blobpat="$constx$blobcont"
1278
1279 # Regular expression that matches a blob with the exact number of
1280 # constants specified as sensitivity.
1281 blobseq="$blobpat\\{$sens\\}"
1282
1283 # Regular expression that matches a blob with the exact specified
1284 # length, or longer.
1285 blobfseq="$blobseq$blobcont*"
1286
1287 # Regular expression that matches the beginning of the pattern or a
1288 # line break.  It must be \(\)ed, such that it can be named in
1289 # replacement patterns without being named.
1290 bol="\\(^\\|[\\n]\\)"
1291
1292 # Regular expression that matches the end of the pattern or a line
1293 # break.  It must be \(\)ed, such that it can be named in replacement
1294 # patterns without being named.
1295 eol="\\([\\n]\\|\$\\)"
1296
1297 # Regular expression that matches a C-style comment.
1298 comment="\\([/][*]\\([^*]*\\|[*]\\+[^/*]\\)*[*]\\+[/]\\|[/][/][^\\n]*[\\n]\\)"
1299
1300 # Regular expression that matches comments typically used in assembly.
1301 asmcomment="\\($comment\\|[;#][^\\n]*[\\n]\\)"
1302
1303 # Regular expression that matches a braced initializer containing at
1304 # least one blob.
1305 initblob="[^\\n]*=\\([  \\n\\\\]*\\|$comment\\)*{\\([^;]*\\|$comment\\)*$blobseq\\([^;]*\\|$comment\\)*}\\?\\([         \\n\\\\]*\\|$comment\\);\\?"
1306
1307 # Regular expression that matches a C (possibly multi-line) #define
1308 # that contains a blob.
1309 defineblob='[   ]*#[    ]*define[       ]\+\([^\n]*\\[\n]\)*[^\n]*'"$blobseq"'\([^\n]*\\[\n]\)*'
1310
1311 # Regular expression that matches an assembly label followed by a blob
1312 # without any intervening label.
1313 asmblob="[a-zA-Z_.][^\\n:;#/    ]*[ ]*:\\([^:{}]*\\|$asmcomment\\)*$blobseq\\([^:]*\\|$asmcomment\\)*"
1314
1315 # Regular expression that matches one or more blobs without
1316 # intervening line breaks.
1317 sblobctx="\\([^\\n]*$blobfseq\\)\\+"
1318
1319 # Regular expression that matches the context for a long blob match.
1320 lblobctx="\\($initblob\\|$defineblob\\|$asmblob\\|$sblobctx\\)"
1321
1322 # Set up the sed script that will go through the (processed) input,
1323 # looking for sequences of blobs and printing whatever was requested.
1324 # It accepts 3 arguments.
1325
1326 # $1 is the action in case blobs were found in the input.
1327
1328 # $2 is the action in case no blobs were found, not even false positives.
1329
1330 # $3 is the action in case false positives were located.
1331
1332 # $4 is the action for every complete input pattern.
1333
1334 set_sedmain () {
1335   falsepos=`sed 's,^\\\|,,;s,^,\\\\(,;s,$,\\\\),' < "$falsepos_name"`
1336
1337   if test -s "$falsepos_name"; then
1338     check_false_positives="$v:???falsepos
1339 /$bol$falsepos/!b blob;
1340 $v:+++falsepos
1341 h;
1342 s/$bol$falsepos/\\1;\/**\/;/g;
1343 # See if, after removing all matches, we end up without any blobs.
1344 $v:???blobseq
1345 /$blobseq/!{
1346   g;
1347   b falsepos;
1348 }
1349 g;
1350 "
1351   else
1352     falsepos="$^"
1353     check_false_positives=
1354   fi
1355
1356   sedmain="
1357 /^;[/][*]\\(end .*\\)\\?[*][/];$/{
1358   $4;
1359   d;
1360 }
1361 /^;[/][*]begin /!{
1362   : internal_error
1363   i\\
1364 Internal error at
1365   p;
1366   q 2;
1367 }
1368 $v:reading file in
1369 h;
1370 n;
1371 : read_more
1372 /^;[/][*]end [^\\n]*[*][/];$/! {
1373   H;
1374   n;
1375   b read_more;
1376 }
1377 H;
1378 g;
1379 $4
1380 s/^\(;[/][*]begin [^\n]*[\n]\)*//;
1381 s/\\($bol;[/][*]\\(end [^\n]*\\)\\?[*][/];\\)*$//;
1382 $v:???!blobseq
1383 /$blobseq/!b clean;
1384 $check_false_positives
1385 # Fall through.
1386 : blob
1387 $v:blob
1388 $1
1389 d;
1390 : clean
1391 $2
1392 d;
1393 : falsepos
1394 $v:falsepos
1395 $3
1396 d;
1397
1398 : print_matches
1399 $v:print_matches
1400 /^$falsepos/! {
1401   $v:delete unmatching lines
1402   h;
1403   s/[\\n]$falsepos.*//;
1404   : print_matches_nomatch_loop
1405   /[\\n]/ {
1406     s/^[^\\n]*[\\n]//;
1407     x;
1408     s/^[^\\n]*[\\n]//;
1409     x;
1410     b print_matches_nomatch_loop;
1411   }
1412   x;
1413   b print_matches_delete_to_eol;
1414 }
1415 h;
1416 s/^\\($falsepos[^\\n]*\\)\\([\\n].*\\)\\?$/\\1/;
1417 $v:narrowed to match
1418 /$blobfseq/ {
1419   i\\
1420 ::: $file :::
1421   p;
1422 }
1423 g;
1424 s/^\\($falsepos[^\\n]*\\)//;
1425 : print_matches_delete_to_eol
1426 $v:delete to eol
1427 s/^[^\\n]*//;
1428 /^$/d;
1429 s/^[\\n]//;
1430 b print_matches;
1431
1432 : print_marked_matches
1433 $v:print_marked_matches
1434 /^$falsepos/! {
1435   h;
1436   s/[\\n]$falsepos.*//;
1437   : print_marked_matches_nomatch_loop
1438   /[\\n]/ {
1439     s/^[^\\n]*[\\n]//;
1440     x;
1441     s/^[^\\n]*[\\n]//;
1442     x;
1443     b print_marked_matches_nomatch_loop;
1444   }
1445   x;
1446   b print_marked_matches_delete_to_eol;
1447 }
1448 h;
1449 s/^\\($falsepos[^\\n]*\\)\\([\\n].*\\)\\?$/\\1/;
1450 $v:narrowed to match
1451 /$blobfseq/{
1452   i\\
1453 ::: $file :::
1454   s/{\\($sepx\\)\\?$blobfseq\\($sepx\\)\\?}[    ]*;/{\/*(DEBLOBBED)*\/};/g;
1455   s/$blobfseq/\/*(DEBLOBBED)*\//g;
1456   p;
1457 }
1458 g;
1459 s/^\\($falsepos[^\\n]*\\)//;
1460 : print_marked_matches_delete_to_eol
1461 $v:delete to eol
1462 s/^[^\\n]*//;
1463 /^$/d;
1464 s/^[\\n]//;
1465 b print_marked_matches;
1466
1467 : print_blobs
1468 $v:print_blobs
1469 /^$falsepos/ {
1470   $v:delete false positive
1471   # This is tricky.  We don't want to print the false positive.
1472   /^$falsepos[^\\n]*$blobseq/ {
1473     $v:delete false positive immediately followed by blob
1474     h;
1475     s/^\\($falsepos\\)[^\\n]*$blobseq.*/\\1/;
1476     : print_blobs_match_loop
1477     /[\\n]/ {
1478       s/^[^\\n]*[\\n]//;
1479       x;
1480       s/^[^\\n]*[\\n]//;
1481       x;
1482       b print_blobs_match_loop;
1483     }
1484     G;
1485     b print_blobs_delete_to_eol;
1486   }
1487   s/^$falsepos//;
1488   b print_blobs_delete_to_eol;
1489 }
1490 /^[^\\n]*$blobseq/! {
1491   $v:delete non-blob header
1492   h;
1493   s/[\\n]\\($falsepos\\|[^\\n]*$blobseq\\).*//;
1494   : print_blobs_nomatch_loop
1495   /[\\n]/ {
1496     s/^[^\\n]*[\\n]//;
1497     x;
1498     s/^[^\\n]*[\\n]//;
1499     x;
1500     b print_blobs_nomatch_loop;
1501   }
1502   x;
1503   b print_blobs_delete_to_eol;
1504 }
1505 h;
1506 i\\
1507 ::: $file :::
1508 s/^\\([^\\n]*\\($blobfseq[^\\n]*\\)\\+\\)\\([\\n].*\\)\\?$/\\1/;
1509 $v:narrowed to blob
1510 p;
1511 g;
1512 s/^\\([^\\n]*\\($blobfseq[^\\n]*\\)\\+\\)//;
1513 : print_blobs_delete_to_eol
1514 $v:delete to eol
1515 s/^[^\\n]*//;
1516 /^$/d;
1517 s/^[\\n]//;
1518 b print_blobs;
1519
1520 : print_marked_blobs
1521 $v:print_marked_blobs
1522 /^$falsepos/ {
1523   $v:delete false positive
1524   # This is tricky.  We don't want to print the false positive.
1525   /^$falsepos[^\\n]*$blobseq/ {
1526     $v:delete false positive immediately followed by blob
1527     h;
1528     s/^\\($falsepos\\)[^\\n]*$blobseq.*/\\1/;
1529     : print_marked_blobs_match_loop
1530     /[\\n]/ {
1531       s/^[^\\n]*[\\n]//;
1532       x;
1533       s/^[^\\n]*[\\n]//;
1534       x;
1535       b print_marked_blobs_match_loop;
1536     }
1537     G;
1538     b print_marked_blobs_delete_to_eol;
1539   }
1540   s/^falsepos//;
1541   b print_marked_blobs_delete_to_eol;
1542 }
1543 /^[^\\n]*$blobseq/! {
1544   $v:delete non-blob header
1545   h;
1546   s/[\\n]\\($falsepos\\|[^\\n]*$blobseq\\).*//;
1547   : print_marked_blobs_nomatch_loop
1548   /[\\n]/ {
1549     s/^[^\\n]*[\\n]//;
1550     x;
1551     s/^[^\\n]*[\\n]//;
1552     x;
1553     b print_marked_blobs_nomatch_loop;
1554   }
1555   x;
1556   b print_marked_blobs_delete_to_eol;
1557 }
1558 h;
1559 i\\
1560 ::: $file :::
1561 s/^\\([^\\n]*\\($blobfseq[^\\n]*\\)\\+\\)\\([\\n].*\\)\\?$/\\1/;
1562 $v:narrowed to blob
1563 s/{\\($sepx\\)\\?$blobfseq\\($sepx\\)\\?}[      ]*;/{\/*(DEBLOBBED)*\/};/g;
1564 s/$blobfseq/\/*(DEBLOBBED)*\//g;
1565 p;
1566 g;
1567 s/^\\([^\\n]*\\($blobfseq[^\\n]*\\)\\+\\)//;
1568 : print_marked_blobs_delete_to_eol
1569 $v:delete to eol
1570 s/^[^\\n]*//;
1571 /^$/d;
1572 s/^[\\n]//;
1573 b print_marked_blobs;
1574
1575 : print_cblobs
1576 $v:print_cblobs
1577 /^$falsepos/ {
1578   $v:delete false positive
1579   # This is tricky.  We don't want to print the false positive.
1580   /^$falsepos[^\\n]*$blobseq/ {
1581     $v:delete false positive immediately followed by blob
1582     h;
1583     s/^\\($falsepos\\)[^\\n]*$blobseq.*/\\1/;
1584     : print_cblobs_match_loop
1585     /[\\n]/ {
1586       s/^[^\\n]*[\\n]//;
1587       x;
1588       s/^[^\\n]*[\\n]//;
1589       x;
1590       b print_cblobs_match_loop;
1591     }
1592     G;
1593     b print_cblobs_delete_to_eol;
1594   }
1595   s/^$falsepos//;
1596   b print_cblobs_delete_to_eol;
1597 }
1598 /^$lblobctx/! {
1599   $v:delete non-blob header
1600   h;
1601   s/[\\n]\\($falsepos\\|$lblobctx\\).*//;
1602   : print_cblobs_nomatch_loop
1603   /[\\n]/ {
1604     s/^[^\\n]*[\\n]//;
1605     x;
1606     s/^[^\\n]*[\\n]//;
1607     x;
1608     b print_cblobs_nomatch_loop;
1609   }
1610   x;
1611   b print_cblobs_delete_to_eol;
1612 }
1613 h;
1614 i\\
1615 ::: $file :::
1616 s/^\\($lblobctx[^\\n]*\\($blobfseq[^\\n]*\\)*\\)\\([\\n].*\\)\\?$/\\1/;
1617 $v:narrowed to blob
1618 p;
1619 g;
1620 s/^\\($lblobctx[^\\n]*\\($blobfseq[^\\n]*\\)*\\)//;
1621 : print_cblobs_delete_to_eol
1622 $v:delete to eol
1623 s/^[^\\n]*//;
1624 /^$/d;
1625 s/^[\\n]//;
1626 b print_cblobs;
1627
1628 : print_marked_cblobs
1629 $v:print_marked_cblobs
1630 /^$falsepos/ {
1631   $v:delete false positive
1632   # This is tricky.  We don't want to print the false positive.
1633   /^$falsepos[^\\n]*$blobseq/ {
1634     $v:delete false positive immediately followed by blob
1635     h;
1636     s/^\\($falsepos\\)[^\\n]*$blobseq.*/\\1/;
1637     : print_marked_cblobs_match_loop
1638     /[\\n]/ {
1639       s/^[^\\n]*[\\n]//;
1640       x;
1641       s/^[^\\n]*[\\n]//;
1642       x;
1643       b print_marked_cblobs_match_loop;
1644     }
1645     G;
1646     b print_marked_cblobs_delete_to_eol;
1647   }
1648   s/^$falsepos//;
1649   b print_marked_cblobs_delete_to_eol;
1650 }
1651 /^$lblobctx/! {
1652   $v:delete non-blob header
1653   h;
1654   s/[\\n]\\($falsepos\\|$lblobctx\\).*//;
1655   : print_marked_cblobs_nomatch_loop
1656   /[\\n]/ {
1657     s/^[^\\n]*[\\n]//;
1658     x;
1659     s/^[^\\n]*[\\n]//;
1660     x;
1661     b print_marked_cblobs_nomatch_loop;
1662   }
1663   x;
1664   b print_marked_cblobs_delete_to_eol;
1665 }
1666 h;
1667 i\\
1668 ::: $file :::
1669 s/^\\($lblobctx[^\\n]*\\($blobfseq[^\\n]*\\)*\\)\\([\\n].*\\)\\?$/\\1/;
1670 $v:narrowed to blob
1671 s/{\\($sepx\\)\\?$blobfseq\\($sepx\\)\\?}[      ]*;/{\/*(DEBLOBBED)*\/};/g;
1672 s/$blobfseq/\/*(DEBLOBBED)*\//g;
1673 p;
1674 g;
1675 s/^\\($lblobctx[^\\n]*\\($blobfseq[^\\n]*\\)*\\)//;
1676 : print_marked_cblobs_delete_to_eol
1677 $v:delete to eol
1678 s/^[^\\n]*//;
1679 /^$/d;
1680 s/^[\\n]//;
1681 b print_marked_cblobs;
1682
1683 : print_both
1684 $v:print_both
1685 /^\\($falsepos\\|[^\\n]*$blobseq\\)/! {
1686   $v:delete non-blob header
1687   h;
1688   s/[\\n]\\($falsepos\\|[^\\n]*$blobseq\\).*//;
1689   : print_both_nomatch_loop
1690   /[\\n]/ {
1691     s/^[^\\n]*[\\n]//;
1692     x;
1693     s/^[^\\n]*[\\n]//;
1694     x;
1695     b print_both_nomatch_loop;
1696   }
1697   x;
1698   b print_both_delete_to_eol;
1699 }
1700 h;
1701 i\\
1702 ::: $file :::
1703 s/^\\(\\($falsepos[^\\n]*\\|[^\\n]*$blobfseq[^\\n]*\\)\\($blobfseq[^\\n]*\\)*\\)\\([\\n].*\\)\\?$/\\1/;
1704 $v:narrowed to blob
1705 p;
1706 g;
1707 s/^\\(\\($falsepos[^\\n]*\\|[^\\n]*$blobfseq[^\\n]*\\)\\($blobfseq[^\\n]*\\)*\\)//;
1708 : print_both_delete_to_eol
1709 $v:delete to eol
1710 s/^[^\\n]*//;
1711 /^$/d;
1712 s/^[\\n]//;
1713 b print_both;
1714
1715 : list_matches
1716 $v:list_matches
1717 /^$falsepos/! {
1718   $v:print unmatching lines
1719   h;
1720   s/[\\n]$falsepos.*//;
1721   p;
1722   : list_matches_nomatch_loop
1723   /[\\n]/ {
1724     s/^[^\\n]*[\\n]//;
1725     x;
1726     s/^[^\\n]*[\\n]//;
1727     x;
1728     b list_matches_nomatch_loop;
1729   }
1730   x;
1731   b list_matches_delete_to_eol;
1732 }
1733 h;
1734 s/^\\($falsepos[^\\n]*\\)\\([\\n].*\\)\\?$/\\1/;
1735 $v:narrowed to match
1736 /$blobfseq/{
1737   s/{\\($sepx\\)\\?$blobfseq\\($sepx\\)\\?}[    ]*;/{\/*(DEBLOBBED)*\/};/g;
1738   s/$blobfseq/\/*(DEBLOBBED)*\//g;
1739 }
1740 p;
1741 g;
1742 s/^\\($falsepos[^\\n]*\\)//;
1743 : list_matches_delete_to_eol
1744 $v:delete to eol
1745 s/^[^\\n]*//;
1746 /^$/d;
1747 s/^[\\n]//;
1748 b list_matches;
1749
1750 : list_blobs
1751 $v:list_blobs
1752 /^$falsepos/ {
1753   $v:print false positive
1754   # This is tricky.  We don't want to deblob the false positive.
1755   /^$falsepos[^\\n]*$blobseq/ {
1756     $v:print false positive immediately followed by blob
1757     h;
1758     s/^\\($falsepos\\)[^\\n]*$blobseq.*/\\1/;
1759     : list_blobs_match_loop
1760     /[\\n]/ {
1761       P;
1762       s/^[^\\n]*[\\n]//;
1763       x;
1764       s/^[^\\n]*[\\n]//;
1765       x;
1766       b list_blobs_match_loop;
1767     }
1768     G;
1769     b list_blobs_delete_to_eol;
1770   }
1771   h;
1772   s/^\\($falsepos[^\\n]*\\)[\\n].*/\\1/;
1773   p;
1774   g;
1775   s/^\\($falsepos[^\\n]*\\)//;
1776   b list_blobs_delete_to_eol;
1777 }
1778 /^[^\\n]*$blobseq/! {
1779   $v:print non-blob header
1780   h;
1781   s/[\\n]\\($falsepos\\|[^\\n]*$blobseq\\).*//;
1782   p;
1783   : list_blobs_nomatch_loop
1784   /[\\n]/ {
1785     s/^[^\\n]*[\\n]//;
1786     x;
1787     s/^[^\\n]*[\\n]//;
1788     x;
1789     b list_blobs_nomatch_loop;
1790   }
1791   x;
1792   b list_blobs_delete_to_eol;
1793 }
1794 h;
1795 s/^\\([^\\n]*\\($blobfseq[^\\n]*\\)\\+\\)\\([\\n].*\\)\\?$/\\1/;
1796 $v:narrowed to blob
1797 s/{\\($sepx\\)\\?$blobfseq\\($sepx\\)\\?}[      ]*;/{\/*(DEBLOBBED)*\/};/g;
1798 s/$blobfseq/\/*(DEBLOBBED)*\//g;
1799 p;
1800 g;
1801 s/^\\([^\\n]*\\($blobfseq[^\\n]*\\)\\+\\)//;
1802 : list_blobs_delete_to_eol
1803 $v:delete to eol
1804 s/^[^\\n]*//;
1805 /^$/d;
1806 s/^[\\n]//;
1807 b list_blobs;
1808
1809 : list_both
1810 $v:list_both
1811 /^\\($falsepos\\|[^\\n]*$blobseq\\)/! {
1812   $v:print non-blob header
1813   h;
1814   s/[\\n]\\($falsepos\\|[^\\n]*$blobseq\\).*//;
1815   p;
1816   : list_both_nomatch_loop
1817   /[\\n]/ {
1818     s/^[^\\n]*[\\n]//;
1819     x;
1820     s/^[^\\n]*[\\n]//;
1821     x;
1822     b list_both_nomatch_loop;
1823   }
1824   x;
1825   b list_both_delete_to_eol;
1826 }
1827 h;
1828 s/^\\(\\($falsepos[^\\n]*\\|[^\\n]*$blobfseq[^\\n]*\\)\\($blobfseq[^\\n]*\\)*\\)\\([\\n].*\\)\\?$/\\1/;
1829 $v:narrowed to blob
1830 s/{\\($sepx\\)\\?$blobfseq\\($sepx\\)\\?}[      ]*;/{\/*(DEBLOBBED)*\/};/g;
1831 s/$blobfseq/\/*(DEBLOBBED)*\//g;
1832 p;
1833 g;
1834 s/^\\(\\($falsepos[^\\n]*\\|[^\\n]*$blobfseq[^\\n]*\\)\\($blobfseq[^\\n]*\\)*\\)//;
1835 : list_both_delete_to_eol
1836 $v:delete to eol
1837 s/^[^\\n]*//;
1838 /^$/d;
1839 s/^[\\n]//;
1840 b list_both;
1841
1842 "
1843 }
1844
1845 # Process an input file named in $1 and run it through the blob
1846 # recognizer.  Functions set_except and set_sed_cmd provide additional
1847 # arguments on a per-file and per-action basis.
1848
1849 check () {
1850   case "$#" in 1) ;; *) echo ICE >&2; exit 1;; esac
1851
1852   input=$1
1853
1854   falsepos_name=`mktemp -t deblob-check-falsepos-XXXXXX`
1855   tempfiles="$falsepos_name"
1856
1857
1858   # Add $1 to falsepos.  Its usage makes it implicitly anchored to the
1859   # beginning of the line.  $2, if present, will some day narrow the
1860   # falsepos matches to files that match it.
1861   addx () {
1862     if test -n "$1"; then
1863       echo -n "\\|$1" >> $falsepos_name
1864     fi
1865   }
1866
1867   set_except "$input"
1868
1869   set_sed_cmd "$input"
1870
1871   rm -f "$falsepos_name"
1872   tempfiles=
1873
1874   # Choose the input source...
1875   case $input in
1876   -) in= ;;
1877   *) in='< "$input"' ;;
1878   esac
1879
1880   set fnord # shifted out below
1881
1882   # Decompress as needed...
1883   case $input in
1884   *.bz2) cmd='bunzip2' ;;
1885   *.gz) cmd='gunzip' ;;
1886   *) cmd= ;;
1887   esac
1888   if test -n "$cmd"; then
1889     set "$@" "$cmd"
1890   fi
1891
1892   # Extract or otherwise munge...
1893   case $input in
1894   *.tar*)
1895     cmd="tar -xf - --to-command='echo \";/*begin \$TAR_FILENAME*/;\"; cat; echo \";/**/;\"; echo \";/*end \$TAR_FILENAME*/;\"'"
1896     ;;
1897   *.patch | */patch-* | *.diff)
1898     sedpatch='
1899       /^[-]/d;
1900       /^\(@@\|+++\) / {
1901         i\
1902 ;/**/;\
1903 ;/*end patchlet */;\
1904 ;/*begin patchlet */;
1905         s/^/;\/*/;
1906         s/$/*\/;/;
1907       };
1908       s/^[ +]//;'
1909     cmd='sed "$sedpatch"'
1910     ;;
1911   *)
1912     cmd='cat'
1913     ;;
1914   esac
1915   cmd="{ echo \";/*begin $input*/;\"; $cmd; echo \";/*end $input*/;\"; }"
1916   set "$@" "$cmd"
1917
1918   case $input in
1919   *.tar*)
1920     cmd="{ cat; cat > /dev/null; }"
1921     set "$@" "$cmd"
1922     ;;
1923   esac
1924
1925   # Then run through the selected action.
1926   if test "$rm" != "rm -f" || test ! `echo "$sedmain" | wc -c` -lt 1024; then
1927     scriptname=`mktemp -t deblob-check-sedmain-XXXXXX`
1928     tempfiles="$tempfiles $scriptname"
1929     echo "$sedmain" > $scriptname
1930     cmd="sed -n -f \"$scriptname\""
1931   else
1932     cmd='sed -n "$sedmain"'
1933   fi
1934   set "$@" "$cmd"
1935
1936   test $# != 1 || set "$@" "cat"
1937
1938   shift # fnord goes out here
1939
1940   pipe=
1941   for cmd
1942   do
1943     if test -z "$pipe"; then
1944       pipe="$cmd $in"
1945     else
1946       pipe="$pipe | $cmd"
1947     fi
1948   done
1949
1950   eval "$pipe"
1951   status=$?
1952
1953   $rm $tempfiles
1954   tempfiles=
1955
1956   (exit $status)
1957 }
1958
1959 # If no input given, use stdin.
1960 case $# in
1961 0)
1962   test -t 0 && echo reading from standard input >&2
1963   set fnord -
1964   shift
1965   ;;
1966 esac
1967
1968 # The lines below commented out out #list: can be used to get a list
1969 # of matching inputs.  ATM this is useless, so we just use a shell
1970 # boolean.
1971
1972 #list: n=$#
1973 pass=:
1974
1975 tempfiles=
1976 trap "status=$?; test -z \"$tempfiles\" || rm -f $tempfiles; (exit $status); exit" 0 1 2 15
1977
1978 # Go through each of the input files in the command line.
1979 for file
1980 do
1981   # If we print anything whatsoever (even a blank line) while
1982   # processing it, we've failed.
1983   if check "$file"; then
1984     :
1985   else
1986     pass=false
1987     #list: set fnord "$@" "$file"
1988     #list: shift
1989   fi
1990 done
1991
1992 #list: shift $n
1993
1994 #list: exec test $# = 0
1995 $pass
1996 exit