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