/usr/share/tcltk/tcllib1.18/crc/crc16.tcl is in tcllib 1.18-dfsg-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 | # crc16.tcl -- Copyright (C) 2002 Pat Thoyts <patthoyts@users.sourceforge.net>
#
# Cyclic Redundancy Check - this is a Tcl implementation of a general
# table-driven CRC implementation. This code should be able to generate
# the lookup table and implement the correct algorithm for most types
# of CRC. CRC-16, CRC-32 and the CCITT version of CRC-16. [1][2][3]
# Most transmission CRCs use the CCITT polynomial (including X.25, SDLC
# and Kermit).
#
# [1] http://www.microconsultants.com/tips/crc/crc.txt for the reference
# implementation
# [2] http://www.embedded.com/internet/0001/0001connect.htm
# for another good discussion of why things are the way they are.
# [3] "Numerical Recipes in C", Press WH et al. Chapter 20.
#
# Checks: a crc for the string "123456789" should give:
# CRC16: 0xBB3D
# CRC-CCITT: 0x29B1
# XMODEM: 0x31C3
# CRC-32: 0xCBF43926
#
# eg: crc::crc16 "123456789"
# crc::crc-ccitt "123456789"
# or crc::crc16 -file tclsh.exe
#
# Note:
# The CCITT CRC can very easily be checked for the accuracy of transmission
# as the CRC of the message plus the CRC values will be 0. That is:
# % set msg {123456789]
# % set crc [crc::crc-ccitt $msg]
# % crc::crc-ccitt $msg[binary format S $crc]
# 0
#
# The same is true of other CRCs but some operate in reverse bit order:
# % crc::crc16 $msg[binary format s [crc::crc16 $msg]]
# 0
#
# -------------------------------------------------------------------------
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
# -------------------------------------------------------------------------
# @mdgen EXCLUDE: crcc.tcl
package require Tcl 8.2; # tcl minimum version
namespace eval ::crc {
namespace export crc16 crc-ccitt crc-32
# Standard CRC generator polynomials.
variable polynomial
set polynomial(crc16) [expr {(1<<16) | (1<<15) | (1<<2) | 1}]
set polynomial(ccitt) [expr {(1<<16) | (1<<12) | (1<<5) | 1}]
set polynomial(crc32) [expr {(1<<32) | (1<<26) | (1<<23) | (1<<22)
| (1<<16) | (1<<12) | (1<<11) | (1<<10)
| (1<<8) | (1<<7) | (1<<5) | (1<<4)
| (1<<2) | (1<<1) | 1}]
# Array to hold the generated tables
variable table
if {![info exists table]} { array set table {}}
# calculate the sign bit for the current platform.
variable signbit
if {![info exists signbit]} {
variable v
for {set v 1} {int($v) != 0} {set signbit $v; set v [expr {$v<<1}]} {}
unset v
}
}
# -------------------------------------------------------------------------
# Generate a CRC lookup table.
# This creates a CRC algorithm lookup table for a 'width' bits checksum
# using the 'poly' polynomial for all values of an input byte.
# Setting 'reflected' changes the bit order for input bytes.
# Returns a list or 255 elements.
#
# CRC-32: Crc_table 32 $crc::polynomial(crc32) 1
# CRC-16: Crc_table 16 $crc::polynomial(crc16) 1
# CRC16/CCITT: Crc_table 16 $crc::polynomial(ccitt) 0
#
proc ::crc::Crc_table {width poly reflected} {
set tbl {}
if {$width < 32} {
set mask [expr {(1 << $width) - 1}]
set topbit [expr {1 << ($width - 1)}]
} else {
set mask 0xffffffff
set topbit 0x80000000
}
for {set i 0} {$i < 256} {incr i} {
if {$reflected} {
set r [reflect $i 8]
} else {
set r $i
}
set r [expr {$r << ($width - 8)}]
for {set k 0} {$k < 8} {incr k} {
if {[expr {$r & $topbit}] != 0} {
set r [expr {($r << 1) ^ $poly}]
} else {
set r [expr {$r << 1}]
}
}
if {$reflected} {
set r [reflect $r $width]
}
lappend tbl [expr {$r & $mask}]
}
return $tbl
}
# -------------------------------------------------------------------------
# Calculate the CRC checksum for the data in 's' using a precalculated
# table.
# s the input data
# width - the width in bits of the CRC algorithm
# table - the name of the variable holding the calculated table
# init - the start value (or the last CRC for sequential blocks)
# xorout - the final value may be XORd with this value
# reflected - a boolean indicating that the bit order is reversed.
# For hardware optimised CRC checks, the bits are handled
# in transmission order (ie: bit0, bit1, ..., bit7)
proc ::crc::Crc {s width table {init 0} {xorout 0} {reflected 0}} {
upvar $table tbl
variable signbit
set signmask [expr {~$signbit>>7}]
if {$width < 32} {
set mask [expr {(1 << $width) - 1}]
set rot [expr {$width - 8}]
} else {
set mask 0xffffffff
set rot 24
}
set crc $init
binary scan $s c* data
foreach {datum} $data {
if {$reflected} {
set ndx [expr {($crc ^ $datum) & 0xFF}]
set lkp [lindex $tbl $ndx]
set crc [expr {($lkp ^ ($crc >> 8 & $signmask)) & $mask}]
} else {
set ndx [expr {(($crc >> $rot) ^ $datum) & 0xFF}]
set lkp [lindex $tbl $ndx]
set crc [expr {($lkp ^ ($crc << 8 & $signmask)) & $mask}]
}
}
return [expr {$crc ^ $xorout}]
}
# -------------------------------------------------------------------------
# Reverse the bit ordering for 'b' bits of the input value 'v'
proc ::crc::reflect {v b} {
set t $v
for {set i 0} {$i < $b} {incr i} {
set v [expr {($t & 1) ? ($v | (1<<(($b-1)-$i))) : ($v & ~(1<<(($b-1)-$i))) }]
set t [expr {$t >> 1}]
}
return $v
}
# -------------------------------------------------------------------------
# Description:
# Pop the nth element off a list. Used in options processing.
#
proc ::crc::Pop {varname {nth 0}} {
upvar $varname args
set r [lindex $args $nth]
set args [lreplace $args $nth $nth]
return $r
}
# -------------------------------------------------------------------------
# Specialisation of the general crc procedure to perform the standard CRC16
# checksum
proc ::crc::CRC16 {s {seed 0}} {
variable table
if {![info exists table(crc16)]} {
variable polynomial
set table(crc16) [Crc_table 16 $polynomial(crc16) 1]
}
return [Crc $s 16 [namespace current]::table(crc16) $seed 0 1]
}
# -------------------------------------------------------------------------
# Specialisation of the general crc procedure to perform the CCITT telecoms
# flavour of the CRC16 checksum
proc ::crc::CRC-CCITT {s {seed 0} {xor 0}} {
variable table
if {![info exists table(ccitt)]} {
variable polynomial
set table(ccitt) [Crc_table 16 $polynomial(ccitt) 0]
}
return [Crc $s 16 [namespace current]::table(ccitt) $seed $xor 0]
}
# -------------------------------------------------------------------------
# Demostrates the parameters used for the 32 bit checksum CRC-32.
# This can be used to show the algorithm is working right by comparison with
# other crc32 implementations
proc ::crc::CRC-32 {s {seed 0xFFFFFFFF}} {
variable table
if {![info exists table(crc32)]} {
variable polynomial
set table(crc32) [Crc_table 32 $polynomial(crc32) 1]
}
return [Crc $s 32 [namespace current]::table(crc32) $seed 0xFFFFFFFF 1]
}
# -------------------------------------------------------------------------
# User level CRC command.
proc ::crc::crc {args} {
array set opts [list filename {} channel {} chunksize 4096 \
format %u seed 0 \
impl [namespace origin CRC16]]
while {[string match -* [set option [lindex $args 0]]]} {
switch -glob -- $option {
-fi* { set opts(filename) [Pop args 1] }
-cha* { set opts(channel) [Pop args 1] }
-chu* { set opts(chunksize) [Pop args 1] }
-fo* { set opts(format) [Pop args 1] }
-i* { set opts(impl) [uplevel 1 namespace origin [Pop args 1]] }
-s* { set opts(seed) [Pop args 1] }
default {
if {[llength $args] == 1} { break }
if {[string compare $option "--"] == 0} { Pop args; break }
set options [join [lsort [array names opts]] ", -"]
return -code error "bad option $option:\
must be one of -$options"
}
}
Pop args
}
if {$opts(filename) != {}} {
set opts(channel) [open $opts(filename) r]
fconfigure $opts(channel) -translation binary
}
if {$opts(channel) != {}} {
set r $opts(seed)
set trans [fconfigure $opts(channel) -translation]
fconfigure $opts(channel) -translation binary
while {![eof $opts(channel)]} {
set chunk [read $opts(channel) $opts(chunksize)]
set r [$opts(impl) $chunk $r]
}
fconfigure $opts(channel) -translation $trans
if {$opts(filename) != {}} {
close $opts(channel)
}
} else {
if {[llength $args] != 1} {
return -code error "wrong \# args: should be\
\"crc16 ?-format string? ?-seed value? ?-impl procname?\
-file name | data\""
}
set r [$opts(impl) [lindex $args 0] $opts(seed)]
}
return [format $opts(format) $r]
}
# -------------------------------------------------------------------------
# The user commands. See 'crc'
#
proc ::crc::crc16 {args} {
return [eval [list crc -impl [namespace origin CRC16]] $args]
}
proc ::crc::crc-ccitt {args} {
return [eval [list crc -impl [namespace origin CRC-CCITT] -seed 0xFFFF]\
$args]
}
proc ::crc::xmodem {args} {
return [eval [list crc -impl [namespace origin CRC-CCITT] -seed 0] $args]
}
proc ::crc::crc-32 {args} {
return [eval [list crc -impl [namespace origin CRC-32] -seed 0xFFFFFFFF]\
$args]
}
# -------------------------------------------------------------------------
package provide crc16 1.1.2
# -------------------------------------------------------------------------
#
# Local variables:
# mode: tcl
# indent-tabs-mode: nil
# End:
|