-
Notifications
You must be signed in to change notification settings - Fork 67
/
module-gbox.h
173 lines (151 loc) · 4.21 KB
/
module-gbox.h
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
#ifndef MODULE_GBOX_H_
#define MODULE_GBOX_H_
/*
* WARNING! Enabling this will make gbox call external programs for OSD with parameters
* received from the network. this means that a rogue server that sends you SMS messages
* may execute code on your machine. do not enable this unless you know what you are
* doing and accept the posssible *BAD* consequences
*/
//#define GBOX_ENABLE_UNSAFE_OSD 1
#ifdef MODULE_GBOX
#define NO_GBOX_ID 0
#define GBOX_MAXHOPS 10
#define DEFAULT_GBOX_MAX_DIST 2
#define DEFAULT_GBOX_MAX_ECM_SEND 3
#define DEFAULT_GBOX_RESHARE 5
#define DEFAULT_GBOX_RECONNECT 300
#define CS_GBOX_MAX_LOCAL_CARDS 16
#define GBOX_REBROADCAST_TIMEOUT 1250
#define GBOX_MIN_REBROADCAST_TIME 100
#define GBOX_SID_CONFIRM_TIME 3600
#define GBOX_DEFAULT_CW_TIME 500
#define MSG_ECM 0x445C
#define MSG_CW 0x4844
#define MSG_HELLO 0xDDAB
#define MSG_HELLO1 0x4849
#define MSG_CHECKCODE 0x41C0
#define MSG_GOODBYE 0x9091
#define MSG_GSMS_ACK_1 0x9098
#define MSG_GSMS_ACK_2 0x9099
#define MSG_GSMS_1 0x0FF0
#define MSG_GSMS_2 0x0FFF
#define MSG_BOXINFO 0xA0A1
#define MSG_UNKNWN 0x48F9
#define GBOX_ECM_NOT_ASKED 0
#define GBOX_ECM_SENT 1
#define GBOX_ECM_SENT_ALL 2
#define GBOX_ECM_SENT_ALL_TWICE 3
#define GBOX_ECM_ANSWERED 4
#define GBOX_CARD_TYPE_GBOX 0
#define GBOX_CARD_TYPE_LOCAL 1
#define GBOX_CARD_TYPE_BETUN 2
#define GBOX_CARD_TYPE_CCCAM 3
#define GBOX_CARD_TYPE_PROXY 4
#define FILE_GBOX_VERSION "gbox.ver"
#define FILE_SHARED_CARDS_INFO "share.info"
#define FILE_BACKUP_CARDS_INFO "expired.info"
#define FILE_ATTACK_INFO "attack.txt"
#define FILE_GBOX_PEER_ONL "share.onl"
#define FILE_STATS "stats.info"
#define FILE_GOODNIGHT_OSD "goodnight.osd"
#define FILE_LOCAL_CARDS_INFO "sc.info"
#define GBOX_STAT_HELLOL 0
#define GBOX_STAT_HELLOS 1
#define GBOX_STAT_HELLOR 2
#define GBOX_STAT_HELLO3 3
#define GBOX_STAT_HELLO4 4
#define GBOX_DELETE_FROM_PEER 0
#define GBOX_DELETE_WITH_ID 1
#define GBOX_DELETE_WITH_TYPE 2
#define GBOX_PEER_OFFLINE 0
#define GBOX_PEER_ONLINE 1
struct gbox_rbc_thread_args
{
struct s_client *cli;
ECM_REQUEST *er;
uint32_t waittime;
};
struct gbox_srvid
{
uint16_t sid;
uint32_t provid_id;
};
struct gbox_good_srvid
{
struct gbox_srvid srvid;
time_t last_cw_received;
};
struct gbox_bad_srvid
{
struct gbox_srvid srvid;
uint8_t bad_strikes;
};
struct gbox_card_id
{
uint16_t peer;
uint8_t slot;
};
struct gbox_card_pending
{
struct gbox_card_id id;
uint32_t pending_time;
};
struct gbox_card
{
struct gbox_card_id id;
uint32_t caprovid;
uint8_t dist;
uint8_t lvl;
uint8_t type;
LLIST *badsids; // sids that have failed to decode (struct gbox_srvid)
LLIST *goodsids; //sids that could be decoded (struct gbox_srvid)
uint32_t no_cws_returned;
uint32_t average_cw_time;
struct gbox_peer *origin_peer;
};
struct gbox_data
{
uint16_t id;
uint32_t password;
uint8_t minor_version;
uint8_t cpu_api;
};
struct gbox_peer
{
struct gbox_data gbox;
uchar *hostname;
uchar checkcode[7];
int8_t online;
uint8_t next_hello;
uchar ecm_idx;
CS_MUTEX_LOCK lock;
struct s_client *my_user;
uint16_t filtered_cards;
uint16_t total_cards;
};
struct gbox_ecm_request_ext
{
// uint32_t gbox_crc; // rcrc for gbox, used to identify ECM
// uint16_t gbox_ecm_id;
// uint8_t gbox_ecm_ok;
uint8_t gbox_hops;
uint16_t gbox_peer;
uint16_t gbox_mypeer;
uint8_t gbox_slot;
uint8_t gbox_version;
uint8_t gbox_unknown; //byte between version and cpu info of
uint8_t gbox_type;
uchar gbox_routing_info[GBOX_MAXHOPS]; //support max 10 hops
};
char *get_gbox_tmp_fname(char *fext);
uint16_t gbox_get_local_gbox_id(void);
uint32_t gbox_get_local_gbox_password(void);
void gbox_send(struct s_client *cli, uchar *buf, int32_t l);
int8_t gbox_message_header(uchar *buf, uint16_t cmd, uint32_t peer_password, uint32_t local_password);
void gbox_free_cards_pending(ECM_REQUEST *er);
void gbox_send_good_night(void);
#else
static inline void gbox_free_cards_pending(ECM_REQUEST *UNUSED(er)) { }
static inline void gbox_send_good_night(void) { }
#endif
#endif