gpt4 book ai didi

java - C 内存泄漏与 packetsender 套接字

转载 作者:太空宇宙 更新时间:2023-11-03 23:47:37 24 4
gpt4 key购买 nike

大家好,我正在尝试为使用 JNI 的 SIP 应用程序编写具有 IP 欺骗功能的 packetsender 共享库,当我尝试运行应用程序并调用 native 方法时,开始时没有任何问题,但过了一段时间我认为内存泄漏发生时没有任何痕迹并导致 JVM 崩溃,我的 C 代码(如下)受 this 的影响很大这是我用 JNI 调用的方法,有人可以帮助我找到泄漏吗?

int send_message(const char * sip_msg, const char * dest_ip, int dest_port, const char * spoofed_ip, unsigned int source_port){
unsigned int source_ip = 0;
srand(time(0));
if(source_port == 0){
source_port = rand() % 65535;
}
//unsigned int source_port = 0;
struct ip *ip;
struct udphdr *udp;
unsigned char packet[65535];
int len;
unsigned int msg_len =strlen(sip_msg);

struct sockaddr_in serv_addr;

int sockfd;
if ((sockfd = socket(AF_INET, SOCK_RAW, IPPROTO_RAW)) < 0) {
printf("\n Error : Could not create socket \n");
return 1;
}

const int on = 1;
if (setsockopt(sockfd, IPPROTO_IP, IP_HDRINCL, &on, sizeof(on)) == -1) {
perror("\n Error : Set Sock Opt \n");
return 1;
}

serv_addr.sin_family = AF_INET;
serv_addr.sin_port = htons(dest_port);
serv_addr.sin_addr.s_addr = inet_addr(dest_ip);

len = sizeof(struct ip) + sizeof(struct udphdr) + msg_len;

if (len > sizeof(packet)) {
printf("Failed to send1!\n");
return -2;
}

ip = (struct ip*) packet;
udp = (struct udphdr *) (packet + sizeof(struct ip));
memcpy(packet+sizeof(struct ip)+sizeof(struct udphdr),sip_msg,msg_len);


ip->ip_v = 4;
ip->ip_hl = sizeof(struct ip) / 4; // no options
ip->ip_tos = 0;
ip->ip_len = htons(len);
ip->ip_id = 23;
ip->ip_off = 0;
ip->ip_ttl = 69;
ip->ip_p = 17;
ip->ip_src.s_addr = inet_addr(spoofed_ip);
ip->ip_dst.s_addr = inet_addr(dest_ip);

ip->ip_sum = checksum((unsigned char *) ip, sizeof(struct ip));

/*if (source_port == 0) {
source_port = 5060;
}*/

udp->source = htons(source_port);
udp->dest = serv_addr.sin_port;
udp->len = htons((unsigned short) sizeof(struct udphdr) + msg_len);
udp->check = 0;

if (sendto(sockfd, packet, len, 0, (struct sockaddr *) (&serv_addr),
sizeof(struct sockaddr_in)) == -1) {
return -2;
printf("Failed to send!\n");
}

close(sockfd);


return 0;}

最佳答案

是的,我能找到一个泄漏,不一定是泄漏。

考虑一下如果sendto 失败。已使用 socket() 打开套接字,但您并未关闭它。您确实需要关闭 可以采用的所有代码路径的套接字。顺便说一句,在这种情况下使用 goto 可能是个好主意。

关于java - C 内存泄漏与 packetsender 套接字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29273607/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com