/usr/share/amsn/msnp2p/msnobject.tcl is in amsn-data 0.98.9-1ubuntu3.
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 | namespace eval ::p2p {
snit::type MSNObject {
option -creator ""
option -size 0
option -type ""
option -location ""
option -friendly ""
option -shad ""
option -shac ""
option -data ""
constructor {args} {
$self configurelist $args
if { $options(-shad) == "" } {
if { $options(-data) == "" } {
return ""
}
$self configure -shad [$self Compute_data_hash $options(-data)]
}
if { $options(-shac) == "" } {
$self configure -shac [$self Compute_checksum]
}
}
method Set_data {data} {
$self configure -size [string length $data]
$self configure -data $data
$self configure -shad [$self Compute_data_hash $data]
$self configure -shac [$self Compute_checksum]
}
typemethod parse { xml_data } {
set elements [split $xml_data " "]
set creator [MSNObject retrieve $elements "Creator"]
set size [MSNObject retrieve $elements "Size"]
set type [MSNObject retrieve $elements "Type"]
set location [encoding convertfrom utf-8 [MSNObject retrieve $elements "Location"]]
set friendly [base64::decode [::sxml::replacexml [encoding convertfrom utf-8 [MSNObject retrieve $elements "Friendly"]]]]
set shad ""
set shad [MSNObject retrieve $elements "SHA1D"]
#if { [info exists shad] && $shad != "" } {
# set shad [MSNObject Decode_shad $shad]
#}
set shac [MSNObject retrieve $elements "SHA1C"]
if { [info exists shac] && $shac != "" } {
set shac [base64::decode $shac]
}
set result [MSNObject %AUTO% -creator $creator -size $size -type $type -location $location -friendly $friendly -shad $shad -shac $shac]
return $result
}
typemethod retrieve { elem data } {
set idx [lsearch $elem "$data=*"]
if { $idx < 0 } { return "" }
set ret [lindex $elem $idx]
set ret [string range $ret [expr { [string length $data]+1}] end]
if {[string first "\"" $ret] != -1} {
set ret [string range $ret [expr { [string first "\"" $ret]+1}] end]
}
if {[string last "\"" $ret] != -1} {
set ret [string range $ret 0 [expr { [string last "\"" $ret]+1}]-2]
}
return $ret
}
typemethod Decode_shad { shad } {
set shad [base64::decode $shad]
if { [string first " " $shad] >= 0 } {
set parts [split $shad " "]
set shad [Decode_shad [lindex $parts 0]]
if { $shad == "" } {
set shad [Decode_shad [lindex $parts 1]]
}
} else {
set shad ""
}
return $shad
}
method Compute_data_hash { data} {
return [string map {"\n" ""} [::base64::encode [binary format H* [::sha1::sha1 $data]]]]
}
method Compute_checksum {} {
set creator [$self cget -creator]
set size [$self cget -size]
set type [$self cget -type]
set file [$self cget -location]
set friendly [$self cget -friendly]
set sha1d [$self cget -shad]
set sha1d [base64::encode $sha1d]
set friendly [base64::encode $friendly]
return [string map {"\n" ""} [::base64::encode [binary format H* [::sha1::sha1 "Creator${creator}Size${size}Type${type}Location${file}Friendly${friendly}SHA1D${sha1d}"]]]]
}
method toString { } {
set creator [$self cget -creator]
set size [$self cget -size]
set type [$self cget -type]
set file [$self cget -location]
set friendly [$self cget -friendly]
set sha1d [$self cget -shad]
set sha1c [$self cget -shac]
set friendly [base64::encode $friendly]
set file [encoding convertto utf-8 $file]
set sha1c [base64::encode $sha1c]
set msnobj "<msnobj Creator=\"$creator\" Size=\"$size\" Type=\"$type\" Location=\"$file\" Friendly=\"${friendly}\" SHA1D=\"$sha1d\" SHA1C=\"$sha1c\"/>\x00"
return $msnobj
}
}
snit::type MSNObjectSession {
delegate method * to P2PSession
delegate option * to P2PSession
option -guid ""
option -context ""
variable data ""
constructor { args } {
install P2PSession using P2PSession %AUTO% -euf_guid $::p2p::EufGuid::MSN_OBJECT
$self configurelist $args
::Event::registerEvent p2pByeReceived all [list $self On_bye_received]
::Event::registerEvent p2pOutgoingSessionTransferCompleted all [list $self On_data_blob_received]
}
destructor {
catch {::Event::unregisterEvent p2pByeReceived all [list $self On_bye_received]}
catch {::Event::unregisterEvent p2pBridgeSelected all [list $self On_bridge_selected]}
catch {::Event::unregisterEvent p2pOutgoingSessionTransferCompleted all [list $self On_data_blob_received]}
$P2PSession destroy
}
method conf2 { } {
$P2PSession conf2
set msg [$P2PSession cget -message]
if { $msg != "" } {
set options(-application_id) [$msg cget -application_id]
set options(-context) [string trim [[$msg body] cget -context] \x00 ]
}
$P2PSession configure -context $options(-context)
::Event::registerEvent p2pBridgeSelected all [list $self On_bridge_selected]
}
method On_data_blob_received { event session rcvdata } {
if { $session != $P2PSession } { return }
$self Close $options(-context) ""
after 60000 [list catch [list $self destroy]]
}
method data { } {
return $data
}
method setData { newData } {
set data $newData
}
method p2p_session { } {
return $P2PSession
}
method On_bye_received { event session } {
if { $session != $P2PSession } { return }
after 60000 [list catch [list $self destroy]]
}
method accept { data_file } {
set data $data_file
$self Respond "200"
$self Request_bridge
}
method reject { } {
$self Respond "603"
after 60000 [list catch [list $self destroy]]
}
#method invite { context } {
# $self Invite $context
# return 0
#}
method send { } {
$self Send_p2p_data "\x00\x00\x00\x00"
$self Send_p2p_data $data
}
method On_bridge_selected { event session } {
if { $session != $P2PSession } { return }
if { $data != "" } {
$self send
}
after 60000 [list catch [list $self destroy]]
}
}
}
|