-
Notifications
You must be signed in to change notification settings - Fork 348
/
start-permission.sh
executable file
·371 lines (329 loc) · 11.7 KB
/
start-permission.sh
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
#!/usr/bin/env bash
localPath=$(pwd)
roles="NONE"
voter="NONE"
accounts="NONE"
nodes="NONE"
org="NONE"
permImpl="NONE"
permInterface="NONE"
upgr="NONE"
nwAdminOrg=""
nwAdminRole=""
orgAdminRole=""
subOrgDepth=0
subOrgBreadth=0
sleepTime=1
function usage() {
echo ""
echo "Usage:"
echo " $0 [raft | istanbul | clique] [tessera | constellation] [--tesseraOptions \"options for Tessera start script\"] [--numNodes numberOfNodes] [--blockPeriod blockPeriod] [--verbosity verbosity]"
echo ""
echo "Where:"
echo " raft | istanbul | clique : specifies which consensus algorithm to use"
echo " tessera | constellation (default = tessera): specifies which privacy implementation to use"
echo " --tesseraOptions: allows additional options as documented in tessera-start.sh usage which is shown below:"
echo " numberOfNodes is the number of nodes to initialise (default = $numNodes)"
echo " --blockPeriod: block period default is 5 seconds for IBFT and 50ms for Raft"
echo " --verbosity: verbosity for logging default is 3"
echo ""
./tessera-start.sh --help
exit -1
}
checkSolidityVersion(){
sv=`solc --version | tail -1 | tr -s " "| cut -f2 -d " " | cut -f1 -d "+"`
rv="0.5.3"
if [ "$(printf '%s\n' "$rv" "$sv" | sort -V | head -n1)" == "$rv" ]; then
echo "Soldity version is $sv"
else
echo "Solidity version is $sv. Required version is 0.5.3. Cannot proceed"
exit 0
fi
}
checkQuorumVersion(){
gv=`geth version | grep "Quorum" | tr -s " " |cut -f3 -d " "`
rv="2.2.3"
if [ "$(printf '%s\n' "$rv" "$gv" | sort -V | head -n1)" = "$rv" ]; then
echo "Quorum version is $gv"
else
echo "Quorum version is $gv.Require 2.2.3. Upgrade Quorum first"
exit 0
fi
}
buildFiles(){
contract=$1
data=$2
echo "Compiling $1.sol"
#compile and generate solc output in abi
solc --bin --abi --optimize --overwrite -o ./output ./perm-contracts/${permissionModel}/$1.sol
cd ./output
deployFile="deploy-$contract.js"
loadFile="load-$contract.js"
rm $deployFile $loadFile 2>>/dev/null
abi=`cat ./$contract.abi`
bc=`cat ./$contract.bin`
echo -e "ac = eth.accounts[0];" >> ./$deployFile
echo -e "web3.eth.defaultAccount = ac;" >> ./$deployFile
echo -e "var abi = $abi;">> ./$deployFile
echo -e "var bytecode = \"0x$bc\";">> ./$deployFile
echo -e "var simpleContract = web3.eth.contract(abi);">> ./$deployFile
if [ "$data" == "NONE" ]
then
echo -e "var a = simpleContract.new(\"0xed9d02e382b34818e88b88a309c7fe71e65f419d\",{from:web3.eth.accounts[0], data: bytecode, gas: 9200000}, function(e, contract) {">> ./$deployFile
elif [ "$data" == "IMPL" ]
then
echo -e "var a = simpleContract.new(\"$upgr\", \"$org\", \"$roles\", \"$accounts\", \"$voter\", \"$nodes\", {from:web3.eth.accounts[0], data: bytecode, gas: 9200000}, function(e, contract) {">> ./$deployFile
else
echo -e "var a = simpleContract.new(\"$data\", {from:web3.eth.accounts[0], data: bytecode, gas: 9200000}, function(e, contract) {">> ./$deployFile
fi
echo -e "\tif (e) {">> ./$deployFile
echo -e "\t\tconsole.log(\"err creating contract\", e);">> ./$deployFile
echo -e "\t} else {">> ./$deployFile
echo -e "\t\tif (!contract.address) {">> ./$deployFile
echo -e "\t\t\tconsole.log(\"Contract transaction send: TransactionHash: \" + contract.transactionHash + \" waiting to be mined...\");">> ./$deployFile
echo -e "\t\t} else {">> ./$deployFile
echo -e "\t\t\tconsole.log(\"Contract mined! Address: \" + contract.address);">> ./$deployFile
echo -e "\t\t\tconsole.log(contract);">> ./$deployFile
echo -e "\t\t}">> ./$deployFile
echo -e "\t}">> ./$deployFile
echo -e "});">> ./$deployFile
cd ..
}
createLoadFile(){
contract=$1
addr=$2
intr=$3
impl=$4
loadFile="load-$contract.js"
cd ./output
abi=`cat ./$contract.abi`
echo -e "ac = eth.accounts[0];">> ./$loadFile
echo -e "web3.eth.defaultAccount = ac;">> ./$loadFile
echo -e "var abi = $abi;">> ./$loadFile
echo -e "var upgr = web3.eth.contract(abi).at(\"$addr\");">> ./$loadFile
echo -e "var impl = \"$permImpl\"">>./$loadFile
echo -e "var intr = \"$permInterface\"">> ./$loadFile
cd ..
}
getContractAddress(){
txid=$1
x=$(geth attach ipc:$localPath/qdata/dd1/geth.ipc <<EOF
var addr=eth.getTransactionReceipt("$txid").contractAddress;
console.log("contarct address number is :["+addr+"]");
exit;
EOF
)
contaddr=`echo $x| tr -s " "| cut -f2 -d "[" | cut -f1 -d"]"`
echo $contaddr
}
createPermConfig(){
rm -f ./permission-config.json
echo -e "{" >> ./permission-config.json
echo -e "\t\"permissionModel\": \"$permissionModel\"," >> ./permission-config.json
echo -e "\t\"upgrdableAddress\": \"$upgr\"," >> ./permission-config.json
echo -e "\t\"interfaceAddress\": \"$permInterface\"," >> ./permission-config.json
echo -e "\t\"implAddress\": \"$permImpl\"," >> ./permission-config.json
echo -e "\t\"nodeMgrAddress\": \"$nodes\"," >> ./permission-config.json
echo -e "\t\"accountMgrAddress\": \"$accounts\"," >> ./permission-config.json
echo -e "\t\"roleMgrAddress\": \"$roles\"," >> ./permission-config.json
echo -e "\t\"voterMgrAddress\": \"$voter\"," >> ./permission-config.json
echo -e "\t\"orgMgrAddress\": \"$org\"," >> ./permission-config.json
echo -e "\t\"nwAdminOrg\": \"$nwAdminOrg\"," >> ./permission-config.json
echo -e "\t\"nwAdminRole\": \"$nwAdminRole\"," >> ./permission-config.json
echo -e "\t\"orgAdminRole\": \"$orgAdminRole\"," >> ./permission-config.json
echo -e "\t\"accounts\": [\"0xed9d02e382b34818e88b88a309c7fe71e65f419d\", \"0xca843569e3427144cead5e4d5999a3d0ccf92b8e\"]," >> ./permission-config.json
echo -e "\t\"subOrgBreadth\": $subOrgBreadth," >> ./permission-config.json
echo -e "\t\"subOrgDepth\": $subOrgDepth" >> ./permission-config.json
echo -e "}" >> ./permission-config.json
}
deployContract(){
file=$1
op=`./runscript.sh ./output/$file`
tx=`echo $op | head -1 | tr -s " "| cut -f5 -d " "`
sleep $sleepTime
contAddr=`getContractAddress $tx`
echo "$contAddr"
}
permissionInit(){
for i in {1..7}
do
cp ./permission-config.json qdata/dd$i
done
}
runInit(){
cd ./output/
x=$(geth attach ipc:$localPath/qdata/dd1/geth.ipc <<EOF
loadScript("load-PermissionsUpgradable.js");
var tx = upgr.init(intr, impl, {from: eth.accounts[0], gas: 4500000});
console.log("Init transaction id :["+tx+"]");
exit;
EOF
)
cd ..
}
displayMsg(){
torq=`tput setaf 14`
reset=`tput sgr0`
msg=$1
echo -e "${torq}---------------------------------------------------------------------"
echo -e "$msg"
echo -e "---------------------------------------------------------------------${reset}"
}
getInputs(){
blockPeriod=$1
read -p "Enter Permission model to use [v1/v2]: " permissionModel
while [[ "$permissionModel" != "v1" && "$permissionModel" != "v2" ]];
do
echo "Invalid input for permissions model. Enter v1 or v2"
read -p "Enter Permission model to use [v1/v2]: " permissionModel
done
read -p "Enter Network Admin Org Name: " nwAdminOrg
read -p "Enter Network Admin Role Name: " nwAdminRole
read -p "Enter Org Admin Role Name: " orgAdminRole
echo "For Sub Orgs"
read -p "Enter Allowed Breadth [numeric]: " subOrgBreadth
read -p "Enter Allowed Depth [numeric]: " subOrgDepth
if [ "$consensus" == "istanbul" ] && [ "$blockPeriod" == "" ]
then
read -p "Enter Block period as in geth start script: " blockPeriod
elif [ "$consensus" == "clique" ]
then
read -p "Enter Block period as given in genesis.json: " blockPeriod
fi
if [ "$consensus" != "raft" ]; then
sleepTime=$(( $blockPeriod + 2 ))
fi
}
privacyImpl=tessera
tesseraOptions=
consensus=raft
numNodes=7
blockPeriod=
verbosity=3
permissionModel=
while (( "$#" )); do
case "$1" in
raft)
consensus=raft
shift
;;
istanbul)
consensus=istanbul
shift
;;
clique)
consensus=clique
shift
;;
tessera)
privacyImpl=tessera
shift
;;
constellation)
privacyImpl=constellation
shift
;;
--tesseraOptions)
tesseraOptions=$2
shift 2
;;
--numNodes)
re='^[0-9]+$'
if ! [[ $2 =~ $re ]] ; then
echo "ERROR: numberOfNodes value must be a number"
usage
fi
numNodes=$2
shift 2
;;
--blockPeriod)
blockPeriod=$2
shift 2
;;
--verbosity)
verbosity=$2
shift 2
;;
--help)
shift
usage
;;
*)
echo "Error: Unsupported command line parameter $1"
usage
;;
esac
done
if [ "$consensus" == "" ]; then
echo "Error: consensus not selected"
exit 1
fi
if [ "$blockPeriod" == "" ]; then
if [ "$consensus" == "raft" ]; then
blockPeriod=50
elif [ "$consensus" == "istanbul" ]; then
blockPeriod=5
fi
fi
./stop.sh
# check solc & geth version if it is below 0.5.3 throw error
displayMsg "Checking solidity and geth version compatibility"
checkSolidityVersion
checkQuorumVersion
displayMsg "Input Permissions Specific parameters"
getInputs $blockPeriod
# init the network
displayMsg "Starting the network in $consensus mode"
echo "Initializing the network"
export STARTPERMISSION=1
./init.sh $consensus --numNodes $numNodes
echo "Starting the network"
if [ "$blockPeriod" == "" ]; then
./start.sh $consensus $privacyImpl --verbosity ${verbosity}
else
./start.sh $consensus $privacyImpl --verbosity ${verbosity} --blockPeriod ${blockPeriod}
fi
sleep 60
# create deployment files upgradable contract and deploy the contract
displayMsg "Building permissions deployables"
buildFiles PermissionsUpgradable $upgr
upgr=`deployContract "deploy-PermissionsUpgradable.js"`
buildFiles "OrgManager" $upgr
buildFiles "RoleManager" $upgr
buildFiles "NodeManager" $upgr
buildFiles "VoterManager" $upgr
buildFiles "AccountManager" $upgr
org=`deployContract "deploy-OrgManager.js"`
roles=`deployContract "deploy-RoleManager.js"`
nodes=`deployContract "deploy-NodeManager.js"`
voter=`deployContract "deploy-VoterManager.js"`
accounts=`deployContract "deploy-AccountManager.js"`
buildFiles "PermissionsImplementation" "IMPL"
buildFiles "PermissionsInterface" $upgr
permImpl=`deployContract "deploy-PermissionsImplementation.js"`
permInterface=`deployContract "deploy-PermissionsInterface.js"`
# create the permissions config file
displayMsg "Creating permission config file and copying to data directories"
createPermConfig
echo "created permission-config.json"
cat ./permission-config.json
#copy the permission config file to qdata/dd folders
permissionInit
displayMsg "Creating load script for upgradable contract and initializing"
# initialize the upgradable contracts with custodian address and link interface and implementation contarcts
createLoadFile "PermissionsUpgradable" $upgr $permInterface $permImpl
runInit
echo "Network initialization completed"
sleep 10
displayMsg "Restarting the network with permissions"
# Bring down the network wait for all time wait connections to close
./stop.sh
# Bring the netowrk back up
if [ "$blockPeriod" == "" ]; then
./start.sh $consensus $privacyImpl --verbosity ${verbosity}
else
./start.sh $consensus $privacyImpl --verbosity ${verbosity} --blockPeriod ${blockPeriod}
fi
#clean up all temporary directories
rm -rf ./output deploy-*.js
rm permission-config.json