Magellan Linux

Contents of /mcore-src/trunk/mcore-tools/src/include/register.global.class.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2461 - (show annotations) (download)
Mon Sep 7 08:48:22 2015 UTC (8 years, 8 months ago) by niro
File size: 2183 byte(s)
-always create the MCORE_CONFIG_PATH
1 # $Id$
2
3 validate_client()
4 {
5 local mac_address="$1"
6 local ip_address="$2"
7 local serial
8 local mtime
9 local serial_id
10
11 if [[ -z ${mac_address} ]]
12 then
13 eecho "Error: No mac_address given"
14 return 1
15 fi
16
17 if [[ -z ${ip_address} ]]
18 then
19 eecho "Error: No ip_address given"
20 return 1
21 fi
22
23 decho "registering mac_address='${mac_address}'"
24 decho "registering ip_address='${ip_address}'"
25
26 # first check if mac is registered
27 serial=$(mysqldo "select serial from client_serials where mac='${mac_address}'")
28
29 if [[ -z ${serial} ]]
30 then
31 mtime=$(date +%s)
32
33 # request a new serial; one command now (cause must be done in the same session)
34 serial=$(mysqldo "insert into client_serials (mtime, mac) values('${mtime}','${mac_address}'); select last_insert_id();")
35 fi
36
37 if [[ -z ${serial} ]]
38 then
39 return 1
40 else
41 decho "serial='${serial}'"
42 rvecho "${serial}"
43
44 SSLSAY_IP="${ip_address}"
45 SSLSAY_PORT="6666"
46 nsslsay_fingerprint "register '${serial}'"
47
48 # register the client as online
49 serial_id=$(mysqldo "select serial from state_connected where serial=${serial};")
50 if [[ -n ${serial_id} ]]
51 then
52 mysqldo "update state_connected set ip='${ip_address}', mac='${mac_address}', mtime='${mtime}' where serial=${serial};"
53 else
54 mysqldo "insert into state_connected(serial,ip,mac,mtime) values('${serial}','${ip_address}','${mac_address}','${mtime}');"
55 fi
56
57 return 0
58 fi
59 }
60
61 register_client()
62 {
63 local control_server_ip
64 local iface_ip
65 local iface
66 local mac_address
67
68 control_server_ip=$(dns_to_ip ${MCORE_CONTROL_SERVER})
69 iface_ip=$(iface_for_remote_addr ${control_server_ip})
70 iface=$(iface_for_ip ${iface_ip})
71 mac_address=$(mac_for_iface ${iface})
72
73 decho "MCORE_CONTROL_SERVER='${MCORE_CONTROL_SERVER}'"
74 decho "iface_ip='${iface_ip}'"
75 decho "iface='${iface}'"
76 decho "mac_address='${mac_address}'"
77
78 decho "register '${mac_address}'"
79 nsslsay_fingerprint "register '${mac_address}' '${iface_ip}'"
80 }
81
82 register_client_local()
83 {
84 local serial="$1"
85
86 if [[ -z ${serial} ]]
87 then
88 eecho "No serial given"
89 return 1
90 fi
91
92 install -d "${MCORE_CONFIG_PATH}"
93 CONFIG="${MCORE_CONFIG_PATH}/serial"
94 clearconfig
95 addconfig "CLIENT_SERIAL=\"${serial}\""
96 }