From 137aa84693b3ff99d8429bdbf0528c357583d6be Mon Sep 17 00:00:00 2001 From: "Joseph C. Lehner" Date: Sun, 31 Jan 2016 18:42:58 +0200 Subject: [PATCH 1/1] Install SIGINT handler in nmrp_do --- nmrp.c | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/nmrp.c b/nmrp.c index 43519fc..0330c63 100644 --- a/nmrp.c +++ b/nmrp.c @@ -24,6 +24,7 @@ #include #include #include +#include #include #include #include @@ -244,6 +245,18 @@ static int mac_parse(const char *str, uint8_t *hwaddr) return 0; } +static struct ethsock *gsock = NULL; + +static void sigh(int sig) +{ + printf("\n"); + if (gsock) { + ethsock_close(gsock); + } + + exit(1); +} + static const char *spinner = "\\|/-"; int nmrp_do(struct nmrpd_args *args) @@ -254,6 +267,7 @@ int nmrp_do(struct nmrpd_args *args) time_t beg; int i, err, ulreqs, expect; struct ethsock *sock; + sig_t sigh_orig; if (args->op != NMRP_UPLOAD_FW) { fprintf(stderr, "Operation not implemented.\n"); @@ -287,13 +301,16 @@ int nmrp_do(struct nmrpd_args *args) return 1; } + gsock = sock; + sigh_orig = signal(SIGINT, sigh); + if (ethsock_set_timeout(sock, args->rx_timeout)) { - return 1; + goto out; } src = ethsock_get_hwaddr(sock); if (!src) { - return 1; + goto out; } memcpy(tx.eh.ether_shost, src, 6); @@ -470,6 +487,8 @@ int nmrp_do(struct nmrpd_args *args) err = 0; out: + signal(SIGINT, sigh_orig); + gsock = NULL; ethsock_close(sock); return err; } -- 2.25.1