Skip to content

Commit 599486c

Browse files
committed
fix tcp
1 parent 0ae5a8e commit 599486c

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

kern/opensips_kern.c

+13-12
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ static int process_sip_data(struct pt_regs *ctx, u64 id, enum sip_data_event_typ
171171
{
172172
dest_info_t dest;
173173
bpf_probe_read(&dest.to, sizeof(union sockaddr_union), data->socketun);
174-
//bpf_probe_read(&dest.send_sock, sizeof(struct socket_info), data->rcvinfo);
174+
// bpf_probe_read(&dest.send_sock, sizeof(struct socket_info), data->rcvinfo);
175175

176176
u16 dst_port = su_getport(&dest.to);
177177
char fmt1[] = "PORT DST: %d\n";
@@ -180,7 +180,7 @@ static int process_sip_data(struct pt_regs *ctx, u64 id, enum sip_data_event_typ
180180
event->rcinfo.dst_port = dst_port;
181181
su2ip_addr(&event->rcinfo.dst_ip, &dest.to);
182182

183-
//data->rcvinfo = &dest.send_sock;
183+
// data->rcvinfo = &dest.send_sock;
184184

185185
u32 kZero = 0;
186186
struct socket_info *send_sock = bpf_map_lookup_elem(&socket_info_heap, &kZero);
@@ -301,15 +301,14 @@ SEC("uprobe/msg_send_udp")
301301
int msg_send_udp(struct pt_regs *ctx)
302302
{
303303
// int run_onsend(sip_msg_t *orig_msg, dest_info_t *dst, char *buf, int len)
304-
//debug_bpf_printk("opensips ======================================= d\n");
304+
// debug_bpf_printk("opensips ======================================= d\n");
305305
// static inline int msg_send_buffer(struct dest_info *dst, char *buf, int len, int flags)
306306
// int udp_send(struct dest_info* dst, char *buf, unsigned len);
307-
//OPENSIPS
308-
//static int proto_udp_send(struct socket_info* source,
307+
// OPENSIPS
308+
// static int proto_udp_send(struct socket_info* source,
309309
// char* buf, unsigned int len, union sockaddr_union* to,
310310
// unsigned int id)
311311

312-
313312
u64 timestamp = bpf_ktime_get_ns();
314313
u64 current_pid_tgid = bpf_get_current_pid_tgid();
315314
u32 pid = current_pid_tgid >> 32;
@@ -355,7 +354,6 @@ int msg_send_udp(struct pt_regs *ctx)
355354
const void *rcvinfo = (void *)PT_REGS_PARM1(ctx);
356355
data.rcvinfo = rcvinfo;
357356

358-
359357
bpf_map_update_elem(&sip_hash_send, &current_pid_tgid, &data, BPF_ANY);
360358

361359
// struct socket_info send_sock = {};
@@ -437,7 +435,7 @@ int msg_send_tcp(struct pt_regs *ctx)
437435
}
438436
#endif
439437

440-
u64 len = (u64)PT_REGS_PARM4(ctx);
438+
u64 len = (u64)PT_REGS_PARM3(ctx);
441439

442440
char fmt2[] = "msg_tcp_send: %lld\n";
443441
bpf_trace_printk(fmt2, sizeof(fmt2), timestamp);
@@ -453,9 +451,12 @@ int msg_send_tcp(struct pt_regs *ctx)
453451
data.timestamp = timestamp;
454452
data.retval = -1;
455453

456-
const char *buf = (const char *)PT_REGS_PARM3(ctx);
454+
const char *buf = (const char *)PT_REGS_PARM2(ctx);
457455
data.buf = buf;
458456

457+
const void *socketun = (void *)PT_REGS_PARM4(ctx);
458+
data.socketun = socketun;
459+
459460
const void *rcvinfo = (void *)PT_REGS_PARM1(ctx);
460461
data.rcvinfo = rcvinfo;
461462

@@ -478,9 +479,9 @@ int msg_ret_send_tcp(struct pt_regs *ctx)
478479
u64 current_uid_gid = bpf_get_current_uid_gid();
479480
u32 uid = current_uid_gid;
480481

481-
int len = (int)PT_REGS_RC(ctx);
482-
char fmt2[] = "msg_tcp_send return: %d\n";
483-
bpf_trace_printk(fmt2, sizeof(fmt2), len);
482+
////int len = (int)PT_REGS_RC(ctx);
483+
// char fmt2[] = "msg_tcp_send return: %d\n";
484+
// bpf_trace_printk(fmt2, sizeof(fmt2), len);
484485

485486
struct data_t *data = bpf_map_lookup_elem(&sip_hash_send, &current_pid_tgid);
486487
if (!data)

0 commit comments

Comments
 (0)