forked from becarpenter/graspy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpusher.py
216 lines (181 loc) · 7.38 KB
/
pusher.py
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""########################################################
########################################################
# pusher is a demonstration Autonomic Service Agent.
# It supports the unregistered GRASP objective 411:mvFile
# in order to push files to a client ASA.
#
# Released under the BSD 2-Clause "Simplified" or "FreeBSD"
# License as follows:
#
# Copyright (C) 2018 Brian E. Carpenter.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with
# or without modification, are permitted provided that the
# following conditions are met:
#
# 1. Redistributions of source code must retain the above
# copyright notice, this list of conditions and the following
# disclaimer.
#
# 2. Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following
# disclaimer in the documentation and/or other materials
# provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS
# AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
# THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
########################################################"""
import grasp
import threading
import time
import cbor
###################################
# Support function for CBOR coded
# objective value
###################################
def detag(val):
""" Decode CBOR if necessary
-> decoded_object, was_CBOR"""
try:
return cbor.loads(val), True
except:
try:
if val.tag == 24:
return cbor.loads(val.value), True
except:
return val, False
####################################
# Support function for negotiator
####################################
def endit(snonce, r):
"""Send end_negotiate with reason string"""
grasp.tprint("Failed", r)
err = grasp.end_negotiate(asa_nonce, snonce, False, reason=r)
if err:
grasp.tprint("end_negotiate error:",grasp.etext[err])
####################################
# Thread to handle a negotiation
####################################
class negotiator(threading.Thread):
"""Thread to negotiate objective as master"""
def __init__(self, snonce, nobj):
threading.Thread.__init__(self)
self.snonce = snonce
self.nobj = nobj
def run(self):
requested_obj=self.nobj
snonce=self.snonce
requested_obj.value, _cbor = detag(requested_obj.value)
if _cbor:
grasp.tprint("CBOR value decoded")
grasp.tprint("Got request for", requested_obj.value)
if requested_obj.dry:
endit(snonce,"Dry run not supported")
else:
try:
file = open(requested_obj.value, "rb")
except Exception as e:
grasp.tprint("File open error")
endit(snonce,str(e))
return
chunk = True
grasp.tprint("Starting transfer")
while chunk:
chunk=file.read(1024)
grasp.ttprint("Sending",len(chunk),"bytes")
requested_obj.value = chunk
#bump the loop count for next chunk
requested_obj.loop_count += 1
if _cbor:
requested_obj.value=cbor.dumps(requested_obj.value)
#send chunk as negotiation step
err,temp,requested_obj = grasp.negotiate_step(asa_nonce, snonce, requested_obj, 1000)
grasp.ttprint("Negotiation step gave:", err, temp, requested_obj)
if (not err) and temp==None:
# the other end signalled End/Accept
grasp.tprint("Ended transfer")
elif not err:
requested_obj.value, _ = detag(requested_obj.value)
if _:
grasp.ttprint("CBOR value decoded")
if (not len(chunk)) or (requested_obj.value != 'ACK'):
# we got a reply after EOF, or a bad ACK
grasp.tprint("Unexpected reply: loop count", requested_obj.loop_count,
"value",requested_obj.value)
endit(snonce, "Unexpected reply")
break
else:
#other end rejected or loop count exhausted
if err==grasp.errors.loopExhausted:
# we need to signal the end
endit(snonce, grasp.etext[err])
else:
grasp.tprint("Failed:",grasp.etext[err])
break
file.close()
#end of negotiation
grasp.tprint("==========================")
grasp.tprint("pusher is starting up.")
grasp.tprint("==========================")
grasp.tprint("pusher is a demonstration Autonomic Service Agent.")
grasp.tprint("It runs indefinitely as file transfer agent.")
grasp.tprint("It is implemented using a negotiation objective")
grasp.tprint("that can handle overlapping requests.")
grasp.tprint("On Windows or Linux, there should be a nice")
grasp.tprint("window that displays the process.")
grasp.tprint("==========================")
####################################
# General initialisation
####################################
time.sleep(8) # so the user can read the text
grasp.skip_dialogue(selfing=True)
####################################
# Register ASA/objective
####################################
err,asa_nonce = grasp.register_asa("pusher")
if not err:
grasp.tprint("ASA pusher registered OK")
else:
exit()
supported_obj = grasp.objective("411:mvFile")
supported_obj.loop_count = 4
supported_obj.neg = True
err = grasp.register_obj(asa_nonce,supported_obj)
if not err:
grasp.tprint("Objective", supported_obj.name, "registered OK")
else:
exit()
###################################
# Set up pretty printing
###################################
grasp.init_bubble_text("pusher")
grasp.tprint("pusher is listening")
###################################
# Negotiate as listener for ever
###################################
while True:
# listen for negotiation request
err, snonce, request = grasp.listen_negotiate(asa_nonce, supported_obj)
if err:
grasp.tprint("listen_negotiate error:",grasp.etext[err])
time.sleep(5) #to calm things if there's a looping error
else:
#got a new negotiation request; kick off a separate negotiator
#so that multiple requests can be handled in parallel
negotiator(snonce, request).start()