gpt4 book ai didi

c - execl 在服务器端的 while(1) 循环中不起作用; C脚本

转载 作者:行者123 更新时间:2023-12-04 12:28:03 26 4
gpt4 key购买 nike

我有一个小 C 脚本的问题,它应该作为服务器运行并为每条到达的消息启动一个弹出窗口。execl语法是正确的,因为如果我尝试使用

编写一个小脚本
main() { execl(...); }

它有效。

当我将它放入 while(1) 循环中时,它不起作用。其他一切都正常,例如 printf 或字符串操作,但 execl 不行。即使我 fork 也不起作用。我怎样才能让它发挥作用?

我尝试过使用fork(),但它也不起作用。

这是完整的服务器 C 代码。

#include <arpa/inet.h>
#include <netinet/in.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <unistd.h>
#include <string.h>

#define BUFLEN 512
#define PORT 9930

void diep(char *s) {
perror(s);
exit(1);
}

int main() {
struct sockaddr_in si_me, si_other;
int s, i, slen=sizeof(si_other), broadcastPermission;
char buf[100], zeni[BUFLEN];

if ((s=socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP))==-1)
diep("socket");

broadcastPermission = 1;
if (setsockopt(s, SOL_SOCKET, SO_BROADCAST, (void *) &broadcastPermission, sizeof(broadcastPermission)) < 0)
diep("setsockopt() failed");

memset((char *) &si_me, 0, sizeof(si_me));
si_me.sin_family = AF_INET;
si_me.sin_port = htons(PORT);
si_me.sin_addr.s_addr = htonl(INADDR_ANY);
if (bind(s, &si_me, sizeof(si_me))==-1)
diep("bind");

while (1) {
if (recvfrom(s, buf, BUFLEN, 0, &si_other, &slen)==-1) diep("recvfrom()");
//printf("Received packet from %s:%d\nData: %s\n", inet_ntoa(si_other.sin_addr), ntohs(si_other.sin_port), buf);

strcpy(zeni, "");
strcat(zeni, "zenity --warning --title Hack!! --text ");
strcat(zeni, buf);
printf("cmd: %s\n", zeni);
//system (zeni);
execl("/usr/bin/zenity", "/usr/bin/zenity", "--warning", "--title", "Warn!", "--text", buf, (char *) NULL);
}

close(s);
return 0;

}

最佳答案

@jweyrich 已经指出了使用 recvfrom 的一些问题,但是还有一个更根本的问题。代码

while (1) {
recvfrom(...);
execl(...);
}

最多只会执行一次。这是因为 exec 系列系统调用(包括 execl)将当前执行的程序替换为 execl 调用中给出的程序。实际上,execl 永远不会返回,除非出现错误。

要在unix中创建新的子进程,必须首先调用fork,它克隆现有进程,然后在子进程中调用execl(或一些相关系统) call) 将子进程替换为您实际想要运行的程序。手动正确执行此操作有些棘手,因此 system 函数会为您完成此操作,但它有其自身的缺点。

关于c - execl 在服务器端的 while(1) 循环中不起作用; C脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2743109/

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