diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2014-12-18 11:45:29 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2014-12-18 11:45:29 +0000 |
commit | 37a808de7ecdf87a496bd71db16cdf561e7e1537 (patch) | |
tree | 04999339ab92f320cc02fd7d316b94d9916e94e6 /src/minidentd | |
parent | 2fcff7d8c86bc6a752bd66259c2f3afa7c301e85 (diff) | |
download | s6-networking-37a808de7ecdf87a496bd71db16cdf561e7e1537.tar.xz |
Fix minidentd (wrong byte order in /proc/net/tcp*) and ident-client.
Add mgetuid.c to the list of cleaned targets.
Diffstat (limited to 'src/minidentd')
-rw-r--r-- | src/minidentd/mgetuid-linux.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/minidentd/mgetuid-linux.c b/src/minidentd/mgetuid-linux.c index 442f642..209318b 100644 --- a/src/minidentd/mgetuid-linux.c +++ b/src/minidentd/mgetuid-linux.c @@ -28,6 +28,17 @@ static int skipspace (char **s) return (int)**s ; } +static void reverse_address (char *s, unsigned int n) +{ + register unsigned int i = n >> 1 ; + while (i--) + { + register char tmp = s[i] ; + s[i] = s[n-1-i] ; + s[n-1-i] = tmp ; + } +} + static int parseline (char *s, unsigned int len, unsigned int *u, char *la, uint16 *lp, char *ra, uint16 *rp, int is6) { char *cur = s ; @@ -44,6 +55,7 @@ static int parseline (char *s, unsigned int len, unsigned int *u, char *la, uint if ((cur - s + 1 + iplen) > len) bug("local_address") ; pos = ucharn_scan(cur, la, iplen) ; /* local_address */ + reverse_address(la, iplen) ; if (!pos) bug("local_address") ; cur += pos ; if ((*cur++) != ':') bug("local_address:") ; @@ -55,6 +67,7 @@ static int parseline (char *s, unsigned int len, unsigned int *u, char *la, uint if ((cur - s + 1 + iplen) > len) bug("remote_address") ; pos = ucharn_scan(cur, ra, iplen) ; /* remote_address */ + reverse_address(ra, iplen) ; if (!pos) bug("remote_address") ; cur += pos ; if ((*cur++) != ':') bug("remote_address:") ; |