-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathirc.c
331 lines (291 loc) · 9.15 KB
/
irc.c
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
#include "irc.h"
#include "config.h"
#include "eightball.h"
#include "log.h"
#include "web.h"
#include "timer.h"
#include "markov.h"
#include <errno.h>
#include <pcre.h>
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <unistd.h>
char *send_buffer = 0;
size_t send_buffer_size = 0;
size_t send_buffer_used = 0;
pthread_mutex_t *send_mutex = 0;
pthread_cond_t *send_data_ready = 0;
pthread_barrier_t *startup_barr = 0;
pthread_t *send_thread = 0;
int send_thread_running = 0;
void uptime_in_stf(long secs, char *buf)
{
long mins = 0, hours = 0, days = 0;
if (secs >= 60)
{
mins = secs / 60;
secs = secs % 60;
}
if (mins >= 60)
{
hours = mins / 60;
mins = mins % 60;
}
if (hours >= 24)
{
days = hours / 24;;
hours = hours % 24;
}
if (days > 0)
sprintf(buf, "%ldd %ldh %ldm %lds", days, hours, mins, secs);
else if (hours > 0)
sprintf(buf, "%ldh %ldm %lds", hours, mins, secs);
else if (mins > 0)
sprintf(buf, "%ldm %lds", mins, secs);
else
sprintf(buf, "%lds", secs);
}
// Returns 1 on privmsg, 0 otherwise
int irc_parse_input(char *msg, struct recv_data *in, struct patterns *patterns)
{
// Ping
if (strncmp(msg, "PING :", 6) == 0) {
// Turn the ping into a pong :D
msg[1] = 'O';
irc_send_str(msg);
return 0;
}
// Normal message
//TODO: check 30
int offsets[30];
int offsetcount = pcre_exec(patterns->privmsg, 0, msg, strlen(msg), 0, 0, offsets, 30);
if (offsetcount == 7) {
pcre_copy_substring(msg, offsets, offsetcount, 1, in->nick, 32);
pcre_copy_substring(msg, offsets, offsetcount, 2, in->ident, 256);
pcre_copy_substring(msg, offsets, offsetcount, 3, in->user, 32);
pcre_copy_substring(msg, offsets, offsetcount, 4, in->server, 64);
pcre_copy_substring(msg, offsets, offsetcount, 5, in->channel, 32);
pcre_copy_substring(msg, offsets, offsetcount, 6, in->message, BUFFER_SIZE);
// In case of privmsgs ### fuck privmsgs for now -- sandsmark
/* if (strcmp(in->channel, config->nick) == 0) {
printf("%s : %s \n", in->channel, in->nick);
strcpy(in->channel, in->nick);
printf("%s : %s \n", in->channel, in->nick);
}*/
return 1;
}
// Kick
offsetcount = pcre_exec(patterns->kick, 0, msg, strlen(msg), 0, 0, offsets, 30);
if (offsetcount == 6) {
pcre_copy_substring(msg, offsets, offsetcount, 1, in->nick, 32);
pcre_copy_substring(msg, offsets, offsetcount, 2, in->user, 32);
pcre_copy_substring(msg, offsets, offsetcount, 3, in->server, 64);
pcre_copy_substring(msg, offsets, offsetcount, 4, in->channel, 32);
// Check if we got kicked
pcre_copy_substring(msg, offsets, offsetcount, 5, in->message, 32);
if (strcmp(in->message, config->nick) == 0) {
printf("Got kicked, rejoining\n");
char rejoin[40];
sprintf(rejoin, "JOIN %s\n", in->channel);
irc_send_str(rejoin);
return 0;
}
printf("full: %s, nick: %s, user: %s, server: %s, channel: %s, message: %s\n", msg, in->nick, in->user, in->server, in->channel, in->message);
// Check if one of our autoops got kicked
char *identity = log_get_identity(in->message);
if (!identity) {
printf(" >>> unable to find identity for kickee\n");
return 0;
}
int valid = 0;
int i=0;
while (config->ops[i]) {
if (!strcmp(config->ops[i++], identity)) {
valid = 1;
break;
}
}
free(identity);
if (!valid) {
// we didn't care about that guy
return 0;
}
// make sure we don't kick one of our own
identity = log_get_identity(in->ident);
i = 0;
while (config->ops[i]) {
if (!strcmp(config->ops[i++], identity)) {
valid = 0;
break;
}
}
free(identity);
if (!valid) {
printf(" >>> infighting between our users, let's not meddle\n");
return 0;
}
char sendbuf[strlen("KICK :Gene police! You! Out of the pool, now!\n") + strlen(in->channel) + strlen(in->nick) + 1]; // + 1 for terminating null byte
sprintf(sendbuf, "KICK %s %s :Gene police! You! Out of the pool, now!\n", in->channel, in->nick);
irc_send_str(sendbuf);
return 0;
}
// Join
offsetcount = pcre_exec(patterns->join, 0, msg, strlen(msg), 0, 0, offsets, 30);
if (offsetcount > 0) {
char nick[BUFFER_SIZE];
char identity[BUFFER_SIZE];
char channel[BUFFER_SIZE];
pcre_copy_substring(msg, offsets, offsetcount, 1, nick, BUFFER_SIZE);
pcre_copy_substring(msg, offsets, offsetcount, 2, identity, BUFFER_SIZE);
pcre_copy_substring(msg, offsets, offsetcount, 3, channel, BUFFER_SIZE);
if (db_user_is_op(identity, channel)) {
char buf[strlen("MODE +o \n") + strlen(channel) + strlen(nick) + 1]; // + 1 for terminating null byte
sprintf(buf, "MODE %s +o %s\n", channel, nick);
irc_send_str(buf);
}
}
return 0;
}
void irc_send_str(char *msg)
{
pthread_mutex_lock(send_mutex);
size_t length = strlen(msg);
// Check if we have enough space
if (length > send_buffer_size - send_buffer_used) {
size_t new_buffer_size = send_buffer_size + BUFFER_SIZE;
send_buffer = realloc(send_buffer, new_buffer_size);
if (!send_buffer) {
die("Unable to allocate more memory for send buffer", strerror(errno));
}
send_buffer_size = new_buffer_size;
}
memcpy(&send_buffer[send_buffer_used], msg, length);
send_buffer_used += length;
pthread_cond_signal(send_data_ready);
pthread_mutex_unlock(send_mutex);
// Print out what we have done
printf("%s", msg);
}
void *send_loop(void *arg)
{
(void)arg; // We don't need this from pthread
pthread_mutex_lock(send_mutex);
// Tell main thread that mutex is locked
pthread_barrier_wait(startup_barr);
while (send_thread_running) {
pthread_cond_wait(send_data_ready, send_mutex);
while (send_buffer_used > 0) {
int sent = send(socket_fd, send_buffer, send_buffer_used, 0);
if (sent == -1) {
//die("Unable to send", strerror(errno));
//perror("Unable to send string: ");
}
send_buffer_used -= sent;
}
}
return 0;
}
void irc_handle_input(struct recv_data *in, struct patterns *patterns)
{
if (config->enabled_modules & MODULE_LOG) {
log_message(in);
}
if (config->enabled_modules & MODULE_MARKOV) {
markov_parse(in);
}
const char *msg = in->message;
int offsets[30];
// Check URLs
if (config->enabled_modules & MODULE_URLS) {
int offsetcount = pcre_exec(patterns->url, 0, msg, strlen(msg), 0, 0, offsets, 30);
while (offsetcount > 0) {
char url[BUFFER_SIZE];
pcre_copy_substring(msg, offsets, offsetcount, 1, url, BUFFER_SIZE);
get_title_from_url(in, url);
if (config->enabled_modules & MODULE_LOG) {
log_url(in, url);
}
offsetcount = pcre_exec(patterns->url, 0, msg, strlen(msg), offsets[1], 0, offsets, 30);
}
}
// 8ball
if (config->enabled_modules & MODULE_EIGHTBALL) {
int offsetcount = pcre_exec(patterns->command_eightball, 0, msg, strlen(msg), 0, 0, offsets, 30);
if (offsetcount > 0) {
char arguments[BUFFER_SIZE];
pcre_copy_substring(msg, offsets, offsetcount, 1, arguments, BUFFER_SIZE);
eightball(in, arguments);
}
}
// Timer
if (config->enabled_modules & MODULE_TIMER) {
int offsetcount = pcre_exec(patterns->command_timer, 0, msg, strlen(msg), 0, 0, offsets, 30);
if (offsetcount > 0) {
// We limit at 4 digits
char time[BUFFER_SIZE];
pcre_copy_substring(msg, offsets, offsetcount, 1, time, BUFFER_SIZE);
timer_parse(in->nick, in->channel, time);
}
}
// Uptime
int offsetcount = pcre_exec(patterns->command_uptime, 0, msg, strlen(msg), 0, 0, offsets, 30);
if (offsetcount > 0) {
long elapsed_secs = toc() / 1000000;
char *buf = (char*)malloc(BUFFER_SIZE);
char *stf = (char*)malloc(BUFFER_SIZE);
uptime_in_stf(elapsed_secs, stf);
sprintf(buf, "PRIVMSG %s :I have been operational for %ld seconds, aka. %s\n",
in->channel, elapsed_secs, stf);
irc_send_str(buf);
free(buf);
free(stf);
}
// Give operator status
offsetcount = pcre_exec(patterns->command_op, 0, msg, strlen(msg), 0, 0, offsets, 30);
if (offsetcount == 2 && db_user_is_op(in->ident, in->channel)) {
char nick[BUFFER_SIZE];
pcre_copy_substring(msg, offsets, offsetcount, 1, nick, BUFFER_SIZE);
db_user_add_op(nick, in->channel);
char buf[BUFFER_SIZE];
sprintf(buf, "MODE %s +o %s\n", in->channel, nick);
irc_send_str(buf);
}
}
void irc_init()
{
// Allocate the send buffer
send_buffer = malloc(BUFFER_SIZE);
send_buffer_size = BUFFER_SIZE;
// Create our mutexes
send_mutex = (pthread_mutex_t*)malloc(sizeof(pthread_mutex_t));
send_data_ready = (pthread_cond_t*)malloc(sizeof(pthread_cond_t));
startup_barr = (pthread_barrier_t*)malloc(sizeof(pthread_barrier_t));
pthread_mutex_init(send_mutex, 0);
pthread_cond_init(send_data_ready, 0);
// Create a barrier for main and sending threads
pthread_barrier_init(startup_barr, 0, 2);
// Create our sending thread
send_thread = (pthread_t*)malloc(sizeof(pthread_t));
send_thread_running = 1;
pthread_create(send_thread, 0, &send_loop, 0);
// Wait for sending thread to get mutex
pthread_barrier_wait(startup_barr);
}
void irc_terminate()
{
send_thread_running = 0;
pthread_cond_signal(send_data_ready);
pthread_join(*send_thread, 0);
free(send_thread);
pthread_mutex_destroy(send_mutex);
free(send_mutex);
pthread_cond_destroy(send_data_ready);
free(send_data_ready);
pthread_barrier_destroy(startup_barr);
free(startup_barr);
free(send_buffer);
}
/* vim: set ts=8 sw=8 tw=0 noexpandtab cindent softtabstop=8 :*/