88 |
|
if (!from) |
89 |
|
{ |
90 |
|
client_p->from = client_p; /* 'from' of local client is self! */ |
91 |
< |
client_p->localClient = mp_pool_get(connection_pool); |
92 |
< |
client_p->localClient->since = CurrentTime; |
93 |
< |
client_p->localClient->lasttime = CurrentTime; |
94 |
< |
client_p->localClient->firsttime = CurrentTime; |
95 |
< |
client_p->localClient->registration = REG_INIT; |
91 |
> |
client_p->connection = mp_pool_get(connection_pool); |
92 |
> |
client_p->connection->since = CurrentTime; |
93 |
> |
client_p->connection->lasttime = CurrentTime; |
94 |
> |
client_p->connection->firsttime = CurrentTime; |
95 |
> |
client_p->connection->registration = REG_INIT; |
96 |
|
|
97 |
|
/* as good a place as any... */ |
98 |
< |
dlinkAdd(client_p, &client_p->localClient->lclient_node, &unknown_list); |
98 |
> |
dlinkAdd(client_p, &client_p->connection->lclient_node, &unknown_list); |
99 |
|
} |
100 |
|
else |
101 |
|
client_p->from = from; /* 'from' of local client is self! */ |
133 |
|
|
134 |
|
if (MyConnect(client_p)) |
135 |
|
{ |
136 |
< |
assert(client_p->localClient->invited.head == NULL); |
137 |
< |
assert(dlink_list_length(&client_p->localClient->invited) == 0); |
138 |
< |
assert(dlink_list_length(&client_p->localClient->watches) == 0); |
136 |
> |
assert(client_p->connection->invited.head == NULL); |
137 |
> |
assert(dlink_list_length(&client_p->connection->invited) == 0); |
138 |
> |
assert(dlink_list_length(&client_p->connection->watches) == 0); |
139 |
|
assert(IsClosing(client_p) && IsDead(client_p)); |
140 |
|
|
141 |
< |
MyFree(client_p->localClient->challenge_response); |
142 |
< |
MyFree(client_p->localClient->challenge_operator); |
143 |
< |
client_p->localClient->challenge_response = NULL; |
144 |
< |
client_p->localClient->challenge_operator = NULL; |
141 |
> |
MyFree(client_p->connection->challenge_response); |
142 |
> |
MyFree(client_p->connection->challenge_operator); |
143 |
> |
client_p->connection->challenge_response = NULL; |
144 |
> |
client_p->connection->challenge_operator = NULL; |
145 |
|
|
146 |
|
/* |
147 |
|
* clean up extra sockets from P-lines which have been discarded. |
148 |
|
*/ |
149 |
< |
if (client_p->localClient->listener) |
149 |
> |
if (client_p->connection->listener) |
150 |
|
{ |
151 |
< |
listener_release(client_p->localClient->listener); |
152 |
< |
client_p->localClient->listener = NULL; |
151 |
> |
listener_release(client_p->connection->listener); |
152 |
> |
client_p->connection->listener = NULL; |
153 |
|
} |
154 |
|
|
155 |
< |
dbuf_clear(&client_p->localClient->buf_recvq); |
156 |
< |
dbuf_clear(&client_p->localClient->buf_sendq); |
155 |
> |
dbuf_clear(&client_p->connection->buf_recvq); |
156 |
> |
dbuf_clear(&client_p->connection->buf_sendq); |
157 |
|
|
158 |
< |
mp_pool_release(client_p->localClient); |
158 |
> |
mp_pool_release(client_p->connection); |
159 |
|
} |
160 |
|
|
161 |
|
mp_pool_release(client_p); |
184 |
|
if (!IsRegistered(client_p)) |
185 |
|
ping = CONNECTTIMEOUT; |
186 |
|
else |
187 |
< |
ping = get_client_ping(&client_p->localClient->confs); |
187 |
> |
ping = get_client_ping(&client_p->connection->confs); |
188 |
|
|
189 |
< |
if (ping < CurrentTime - client_p->localClient->lasttime) |
189 |
> |
if (ping < CurrentTime - client_p->connection->lasttime) |
190 |
|
{ |
191 |
|
if (!IsPingSent(client_p)) |
192 |
|
{ |
196 |
|
* it is still alive. |
197 |
|
*/ |
198 |
|
SetPingSent(client_p); |
199 |
< |
client_p->localClient->lasttime = CurrentTime - ping; |
199 |
> |
client_p->connection->lasttime = CurrentTime - ping; |
200 |
|
sendto_one(client_p, "PING :%s", ID_or_name(&me, client_p)); |
201 |
|
} |
202 |
|
else |
203 |
|
{ |
204 |
< |
if (CurrentTime - client_p->localClient->lasttime >= 2 * ping) |
204 |
> |
if (CurrentTime - client_p->connection->lasttime >= 2 * ping) |
205 |
|
{ |
206 |
|
/* |
207 |
|
* If the client/server hasn't talked to us in 2*ping seconds |
220 |
|
} |
221 |
|
|
222 |
|
snprintf(buf, sizeof(buf), "Ping timeout: %d seconds", |
223 |
< |
(int)(CurrentTime - client_p->localClient->lasttime)); |
223 |
> |
(int)(CurrentTime - client_p->connection->lasttime)); |
224 |
|
exit_client(client_p, buf); |
225 |
|
} |
226 |
|
} |
247 |
|
* Check UNKNOWN connections - if they have been in this state |
248 |
|
* for > 30s, close them. |
249 |
|
*/ |
250 |
< |
if (IsAuthFinished(client_p) && (CurrentTime - client_p->localClient->firsttime) > 30) |
250 |
> |
if (IsAuthFinished(client_p) && (CurrentTime - client_p->connection->firsttime) > 30) |
251 |
|
exit_client(client_p, "Registration timed out"); |
252 |
|
} |
253 |
|
} |
308 |
|
if (IsDead(client_p) || !IsClient(client_p)) |
309 |
|
continue; |
310 |
|
|
311 |
< |
if ((conf = find_conf_by_address(NULL, &client_p->localClient->ip, CONF_DLINE, |
312 |
< |
client_p->localClient->aftype, NULL, NULL, 1))) |
311 |
> |
if ((conf = find_conf_by_address(NULL, &client_p->connection->ip, CONF_DLINE, |
312 |
> |
client_p->connection->aftype, NULL, NULL, 1))) |
313 |
|
{ |
314 |
|
conf_try_ban(client_p, conf); |
315 |
|
continue; /* and go examine next fd/client_p */ |
317 |
|
|
318 |
|
if (ConfigGeneral.glines) |
319 |
|
{ |
320 |
< |
if ((conf = find_conf_by_address(client_p->host, &client_p->localClient->ip, |
321 |
< |
CONF_GLINE, client_p->localClient->aftype, |
320 |
> |
if ((conf = find_conf_by_address(client_p->host, &client_p->connection->ip, |
321 |
> |
CONF_GLINE, client_p->connection->aftype, |
322 |
|
client_p->username, NULL, 1))) |
323 |
|
{ |
324 |
|
conf_try_ban(client_p, conf); |
327 |
|
} |
328 |
|
} |
329 |
|
|
330 |
< |
if ((conf = find_conf_by_address(client_p->host, &client_p->localClient->ip, |
331 |
< |
CONF_KLINE, client_p->localClient->aftype, |
330 |
> |
if ((conf = find_conf_by_address(client_p->host, &client_p->connection->ip, |
331 |
> |
CONF_KLINE, client_p->connection->aftype, |
332 |
|
client_p->username, NULL, 1))) |
333 |
|
{ |
334 |
|
conf_try_ban(client_p, conf); |
348 |
|
{ |
349 |
|
struct Client *client_p = ptr->data; |
350 |
|
|
351 |
< |
if ((conf = find_conf_by_address(NULL, &client_p->localClient->ip, CONF_DLINE, |
352 |
< |
client_p->localClient->aftype, NULL, NULL, 1))) |
351 |
> |
if ((conf = find_conf_by_address(NULL, &client_p->connection->ip, CONF_DLINE, |
352 |
> |
client_p->connection->aftype, NULL, NULL, 1))) |
353 |
|
{ |
354 |
|
conf_try_ban(client_p, conf); |
355 |
|
continue; /* and go examine next fd/client_p */ |
389 |
|
type_string = kline_string; |
390 |
|
break; |
391 |
|
case CONF_DLINE: |
392 |
< |
if (find_conf_by_address(NULL, &client_p->localClient->ip, CONF_EXEMPT, |
393 |
< |
client_p->localClient->aftype, NULL, NULL, 1)) |
392 |
> |
if (find_conf_by_address(NULL, &client_p->connection->ip, CONF_EXEMPT, |
393 |
> |
client_p->connection->aftype, NULL, NULL, 1)) |
394 |
|
return; |
395 |
|
type_string = dline_string; |
396 |
|
break; |
551 |
|
client_p->username, client_p->sockhost); |
552 |
|
break; |
553 |
|
case MASK_IP: |
554 |
< |
if (client_p->localClient->aftype == AF_INET) |
554 |
> |
if (client_p->connection->aftype == AF_INET) |
555 |
|
snprintf(buf, sizeof(buf), "%s[%s@255.255.255.255]", |
556 |
|
client_p->name, client_p->username); |
557 |
|
else |
619 |
|
if (MyConnect(source_p)) |
620 |
|
{ |
621 |
|
/* Clean up invitefield */ |
622 |
< |
DLINK_FOREACH_SAFE(ptr, ptr_next, source_p->localClient->invited.head) |
622 |
> |
DLINK_FOREACH_SAFE(ptr, ptr_next, source_p->connection->invited.head) |
623 |
|
del_invite(ptr->data, source_p); |
624 |
|
|
625 |
|
del_all_accepts(source_p); |
712 |
|
if (HasFlag(source_p, FLAGS_IPHASH)) |
713 |
|
{ |
714 |
|
DelFlag(source_p, FLAGS_IPHASH); |
715 |
< |
ipcache_remove_address(&source_p->localClient->ip); |
715 |
> |
ipcache_remove_address(&source_p->connection->ip); |
716 |
|
} |
717 |
|
|
718 |
< |
delete_auth(&source_p->localClient->auth); |
718 |
> |
delete_auth(&source_p->connection->auth); |
719 |
|
|
720 |
|
/* |
721 |
|
* This source_p could have status of one of STAT_UNKNOWN, STAT_CONNECTING |
728 |
|
{ |
729 |
|
assert(dlinkFind(&unknown_list, source_p)); |
730 |
|
|
731 |
< |
dlinkDelete(&source_p->localClient->lclient_node, &unknown_list); |
731 |
> |
dlinkDelete(&source_p->connection->lclient_node, &unknown_list); |
732 |
|
} |
733 |
|
else if (IsClient(source_p)) |
734 |
|
{ |
735 |
< |
time_t on_for = CurrentTime - source_p->localClient->firsttime; |
735 |
> |
time_t on_for = CurrentTime - source_p->connection->firsttime; |
736 |
|
assert(Count.local > 0); |
737 |
|
Count.local--; |
738 |
|
|
741 |
|
free_dlink_node(m); |
742 |
|
|
743 |
|
assert(dlinkFind(&local_client_list, source_p)); |
744 |
< |
dlinkDelete(&source_p->localClient->lclient_node, &local_client_list); |
744 |
> |
dlinkDelete(&source_p->connection->lclient_node, &local_client_list); |
745 |
|
|
746 |
< |
if (source_p->localClient->list_task) |
746 |
> |
if (source_p->connection->list_task) |
747 |
|
free_list_task(source_p); |
748 |
|
|
749 |
|
watch_del_watch_list(source_p); |
753 |
|
ConfigGeneral.hide_spoof_ips && IsIPSpoof(source_p) ? |
754 |
|
"255.255.255.255" : source_p->sockhost); |
755 |
|
ilog(LOG_TYPE_USER, "%s (%3u:%02u:%02u): %s!%s@%s %llu/%llu", |
756 |
< |
myctime(source_p->localClient->firsttime), (unsigned int)(on_for / 3600), |
756 |
> |
myctime(source_p->connection->firsttime), (unsigned int)(on_for / 3600), |
757 |
|
(unsigned int)((on_for % 3600)/60), (unsigned int)(on_for % 60), |
758 |
|
source_p->name, source_p->username, source_p->host, |
759 |
< |
source_p->localClient->send.bytes>>10, |
760 |
< |
source_p->localClient->recv.bytes>>10); |
759 |
> |
source_p->connection->send.bytes>>10, |
760 |
> |
source_p->connection->recv.bytes>>10); |
761 |
|
} |
762 |
|
else if (IsServer(source_p)) |
763 |
|
{ |
765 |
|
--Count.myserver; |
766 |
|
|
767 |
|
assert(dlinkFind(&local_server_list, source_p)); |
768 |
< |
dlinkDelete(&source_p->localClient->lclient_node, &local_server_list); |
768 |
> |
dlinkDelete(&source_p->connection->lclient_node, &local_server_list); |
769 |
|
} |
770 |
|
|
771 |
|
if (!IsDead(source_p)) |
818 |
|
|
819 |
|
if (MyConnect(source_p)) |
820 |
|
{ |
821 |
< |
int connected = CurrentTime - source_p->localClient->firsttime; |
821 |
> |
int connected = CurrentTime - source_p->connection->firsttime; |
822 |
|
sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE, |
823 |
|
"%s was connected for %d day%s, %2d:%02d:%02d. %llu/%llu sendK/recvK.", |
824 |
|
source_p->name, connected/86400, (connected/86400 == 1) ? "" : "s", |
825 |
|
(connected % 86400) / 3600, (connected % 3600) / 60, connected % 60, |
826 |
< |
source_p->localClient->send.bytes >> 10, |
827 |
< |
source_p->localClient->recv.bytes >> 10); |
826 |
> |
source_p->connection->send.bytes >> 10, |
827 |
> |
source_p->connection->recv.bytes >> 10); |
828 |
|
ilog(LOG_TYPE_IRCD, "%s was connected for %d day%s, %2d:%02d:%02d. %llu/%llu sendK/recvK.", |
829 |
|
source_p->name, connected/86400, (connected/86400 == 1) ? "" : "s", |
830 |
|
(connected % 86400) / 3600, (connected % 3600) / 60, connected % 60, |
831 |
< |
source_p->localClient->send.bytes >> 10, |
832 |
< |
source_p->localClient->recv.bytes >> 10); |
831 |
> |
source_p->connection->send.bytes >> 10, |
832 |
> |
source_p->connection->recv.bytes >> 10); |
833 |
|
} |
834 |
|
} |
835 |
|
else if (IsClient(source_p) && !HasFlag(source_p, FLAGS_KILLED)) |
857 |
|
if (IsDefunct(client_p)) |
858 |
|
return; |
859 |
|
|
860 |
< |
dbuf_clear(&client_p->localClient->buf_recvq); |
861 |
< |
dbuf_clear(&client_p->localClient->buf_sendq); |
860 |
> |
dbuf_clear(&client_p->connection->buf_recvq); |
861 |
> |
dbuf_clear(&client_p->connection->buf_sendq); |
862 |
|
|
863 |
|
assert(dlinkFind(&abort_list, client_p) == NULL); |
864 |
|
ptr = make_dlink_node(); |
884 |
|
if (IsDefunct(client_p)) |
885 |
|
return; |
886 |
|
|
887 |
< |
dbuf_clear(&client_p->localClient->buf_recvq); |
888 |
< |
dbuf_clear(&client_p->localClient->buf_sendq); |
887 |
> |
dbuf_clear(&client_p->connection->buf_recvq); |
888 |
> |
dbuf_clear(&client_p->connection->buf_sendq); |
889 |
|
|
890 |
< |
current_error = get_sockerr(client_p->localClient->fd.fd); |
890 |
> |
current_error = get_sockerr(client_p->connection->fd.fd); |
891 |
|
|
892 |
|
if (IsServer(client_p) || IsHandshake(client_p)) |
893 |
|
{ |
894 |
< |
int connected = CurrentTime - client_p->localClient->firsttime; |
894 |
> |
int connected = CurrentTime - client_p->connection->firsttime; |
895 |
|
|
896 |
|
if (error == 0) |
897 |
|
{ |
980 |
|
void |
981 |
|
del_accept(struct split_nuh_item *accept_p, struct Client *client_p) |
982 |
|
{ |
983 |
< |
dlinkDelete(&accept_p->node, &client_p->localClient->acceptlist); |
983 |
> |
dlinkDelete(&accept_p->node, &client_p->connection->acceptlist); |
984 |
|
|
985 |
|
MyFree(accept_p->nickptr); |
986 |
|
MyFree(accept_p->userptr); |
995 |
|
{ |
996 |
|
dlink_node *ptr = NULL; |
997 |
|
|
998 |
< |
DLINK_FOREACH(ptr, client_p->localClient->acceptlist.head) |
998 |
> |
DLINK_FOREACH(ptr, client_p->connection->acceptlist.head) |
999 |
|
{ |
1000 |
|
struct split_nuh_item *accept_p = ptr->data; |
1001 |
|
|
1044 |
|
{ |
1045 |
|
dlink_node *ptr = NULL, *ptr_next = NULL; |
1046 |
|
|
1047 |
< |
DLINK_FOREACH_SAFE(ptr, ptr_next, client_p->localClient->acceptlist.head) |
1047 |
> |
DLINK_FOREACH_SAFE(ptr, ptr_next, client_p->connection->acceptlist.head) |
1048 |
|
del_accept(ptr->data, client_p); |
1049 |
|
} |
1050 |
|
|
1054 |
|
unsigned int idle = 0; |
1055 |
|
unsigned int min_idle = 0; |
1056 |
|
unsigned int max_idle = 0; |
1057 |
< |
const struct ClassItem *class = get_class_ptr(&target_p->localClient->confs); |
1057 |
> |
const struct ClassItem *class = get_class_ptr(&target_p->connection->confs); |
1058 |
|
|
1059 |
|
if (!(class->flags & CLASS_FLAGS_FAKE_IDLE) || target_p == source_p) |
1060 |
< |
return CurrentTime - target_p->localClient->last_privmsg; |
1060 |
> |
return CurrentTime - target_p->connection->last_privmsg; |
1061 |
|
if (HasUMode(source_p, UMODE_OPER) && |
1062 |
|
!(class->flags & CLASS_FLAGS_HIDE_IDLE_FROM_OPERS)) |
1063 |
< |
return CurrentTime - target_p->localClient->last_privmsg; |
1063 |
> |
return CurrentTime - target_p->connection->last_privmsg; |
1064 |
|
|
1065 |
|
min_idle = class->min_idle; |
1066 |
|
max_idle = class->max_idle; |
1071 |
|
if (class->flags & CLASS_FLAGS_RANDOM_IDLE) |
1072 |
|
idle = genrand_int32(); |
1073 |
|
else |
1074 |
< |
idle = CurrentTime - target_p->localClient->last_privmsg; |
1074 |
> |
idle = CurrentTime - target_p->connection->last_privmsg; |
1075 |
|
|
1076 |
|
if (!max_idle) |
1077 |
|
idle = 0; |