0

exec() 関数の 1 つを使用して、別のディレクトリにある (ac ソースからコンパイルされた) バイナリ ファイルを実行するにはどうすればよいですか? inotify API を使用していますが、別のディレクトリにあるファイルを実行したいと考えています。宿題は次のとおりです。ファイルが作成されるたびに通知します。このファイルが実行可能ファイルの場合は、それを実行します。

コードは次のとおりです。

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/inotify.h>
#include <sys/wait.h>

#define EVENT_SIZE      (sizeof(struct inotify_event))
#define EVENT_BUF_LEN   (1024 * (EVENT_SIZE + 16))

int main(int argc, char *argv[]) {

int fd, wd, length = 0;
char buffer[EVENT_BUF_LEN];
struct stat sb;

if(argc != 2) {
    printf("Usage: ./spy dirpath\n");
    exit(EXIT_FAILURE);
}

if( (fd = inotify_init()) == -1 )
    perror("inotify_init()");
if( (wd = inotify_add_watch(fd, argv[1], IN_CREATE)) == -1 )
    perror("inotify_add_watch");
while(1) {  
    if( (length = read(fd, buffer, EVENT_BUF_LEN)) < 0 )
        perror("read()");
    struct inotify_event *event = (struct inotify_event *)&buffer;
    if(event->len) {
        if(event->mask & IN_CREATE) {
            if(event->mask & IN_ISDIR)
                continue;
            else {
                if(access(event->name, X_OK)) {
                    printf("New executable file created\n");                
                    pid_t child;
                        int cstatus;
                        child = fork();
                        if(child > 0) { /* father */
                wait(&cstatus);
                }
    else { /* child */
        chdir(argv[1]);
        /* This time, I try to tell it directly the filename*/
        char *args[2] = { "./helloworld" ,NULL };
        execvp(args[0], args);
        printf("execvp failed\n");
                    exit(EXIT_FAILURE);
    }

            }
        }
    }
}

inotify_rm_watch(fd, wd);
close(fd);

return(0);
}
4

1 に答える 1