在 C 程序中调用 pppd 会阻塞线程

Calling pppd within C program blocks the thread

我有一个从 C 程序中调用的脚本。我在启动线程之前执行此操作,因为我需要在这些线程启动之前启动 ppp link。我执行以下操作:

int main(){
    int ret = 0;
    ret = WEXITSTATUS(system("./nbiot_telit_ppp_installer.sh"));
    printf("ret = %d\r\n", ret);

    // Never gets here after ppp is up
    /* Start the threads */
    ==> starts thread-1
    ==> starts thread-2
}

我试过在 thread-1 中调用脚本,如下所示:

void *thread1(void *thPtr)
{
    int ret = 0;
    ret = WEXITSTATUS(system("./nbiot_telit_ppp_installer.sh"));
    printf("ret = %d\r\n", ret);

    // Never gets here after ppp is up
    /* Some aws init code */

    while(1){
    }
} 

关于脚本成功,我得到以下信息:

  Script /etc/ppp/ip-up started (pid 7771)
  Script /etc/ppp/ip-up finished (pid 7771), status = 0x0

在上面之后,没有执行超出或低于它的代码。它 returns 仅当脚本终止时。

无论 ppp link 成功与否,我都想在我的 c 代码中获取 "status" 值并据此做出决定。我有在裸机上工作的经验,但对 Linux 还很陌生。如果能从专家那里得到一些关于这个问题的见解以及如何实现这一点的建议,那就太好了。

当 ppp 链接出现时,它执行一个文件 /etc/ppp/ip-up 当它下降时,它执行/etc/ppp/ip-down。 如果您在这些文件中添加一些内容,您可以将其用作标志。

我的 ip-up 文件:

#!/bin/sh
echo ppp is up > /var/run/ppp-up-flag

我的ip-down文件:

#!/bin/sh
rm /var/run/ppp-up-flag

现在我的程序可以测试 /var/run/ppp-up-flag。

Detect ppp link thread