mirror of
https://github.com/ecki/net-tools.git
synced 2025-04-12 10:43:32 +00:00
Not all sockaddr structs have the same alignment. Instead, it depends on the fields contained in it. The way net-tools has written things though, it accepts sockaddr* everywhere which has 16bit alignment, even though it will cast it to other sockaddr types that have higher alignment. For example, `route` can crash on alpha because it declares sockaddr on the stack, but then casts it up to sockaddr_in6 (which has 32bits). It's also bad storage wise as we might try to cast the sockaddr to a type that is larger than sockaddr which means clobbering the stack. Instead, lets rewrite all the APIs to take a sockaddr_storage. This is guaranteed to have both the maximum alignment and size requirements for all other sockaddr types. Now we can safely cast that pointer to any other sockaddr type and not worry about it. It also has the nice effect of deleting a lot of casts in a lot of places when we only need the type of family. The vast majority of changes here are mechanical. There are a few places where we have to memcpy between a dedicated sockaddr_storage and a smaller struct because we're using an external embedded type (like arpreq). URL: https://bugs.gentoo.org/558436
169 lines
3.8 KiB
C
169 lines
3.8 KiB
C
/*
|
|
* lib/x25.c This file contains an implementation of the "X.25"
|
|
* support functions for the NET-3 base distribution.
|
|
*
|
|
* Version: @(#)x25.c 1.00 08/15/98
|
|
*
|
|
* Author: Stephane Fillod, <sfillod@charybde.gyptis.frmug.org>
|
|
* based on ax25.c by:
|
|
* Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
|
|
* Copyright 1993 MicroWalt Corporation
|
|
*
|
|
* This program is free software; you can redistribute it
|
|
* and/or modify it under the terms of the GNU General
|
|
* Public License as published by the Free Software
|
|
* Foundation; either version 2 of the License, or (at
|
|
* your option) any later version.
|
|
*/
|
|
#include "config.h"
|
|
|
|
#if HAVE_AFX25 || HAVE_HWX25
|
|
#include <sys/types.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/socket.h>
|
|
#include <linux/x25.h>
|
|
#include <net/if_arp.h> /* ARPHRD_X25 */
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <ctype.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <string.h>
|
|
#include <termios.h>
|
|
#include <unistd.h>
|
|
#include "net-support.h"
|
|
#include "pathnames.h"
|
|
#define EXTERN
|
|
#if 0
|
|
#include "net-locale.h"
|
|
#endif
|
|
#include "intl.h"
|
|
#include "util.h"
|
|
|
|
static char X25_errmsg[128];
|
|
|
|
|
|
extern struct aftype x25_aftype;
|
|
|
|
/* is in net/x25.h, not in the public header file linux/x25.h. Why?*/
|
|
#ifndef X25_ADDR_LEN
|
|
#define X25_ADDR_LEN 16
|
|
#endif
|
|
|
|
|
|
static const char *
|
|
X25_print(const char *ptr)
|
|
{
|
|
static char buff[X25_ADDR_LEN+1];
|
|
|
|
strncpy(buff, ptr, X25_ADDR_LEN);
|
|
buff[X25_ADDR_LEN] = '\0';
|
|
return(buff);
|
|
|
|
}
|
|
|
|
|
|
/* Display an X.25 socket address. */
|
|
static const char *
|
|
X25_sprint(const struct sockaddr_storage *sasp, int numeric)
|
|
{
|
|
const struct sockaddr *sap = (const struct sockaddr *)sasp;
|
|
if (sap->sa_family == 0xFFFF || sap->sa_family == 0)
|
|
return( _("[NONE SET]"));
|
|
return(X25_print(((struct sockaddr_x25 *)sasp)->sx25_addr.x25_addr));
|
|
}
|
|
|
|
|
|
/*
|
|
* return the sigdigits of the address
|
|
*/
|
|
static int
|
|
X25_input(int type, char *bufp, struct sockaddr_storage *sasp)
|
|
{
|
|
struct sockaddr *sap = (struct sockaddr *)sasp;
|
|
char *ptr;
|
|
char *p;
|
|
unsigned int sigdigits;
|
|
|
|
sap->sa_family = x25_aftype.af;
|
|
ptr = ((struct sockaddr_x25 *)sap)->sx25_addr.x25_addr;
|
|
|
|
|
|
/* Address the correct length ? */
|
|
if (strlen(bufp)>18) {
|
|
safe_strncpy(X25_errmsg,
|
|
_("Address can't exceed eighteen digits with sigdigits"),
|
|
sizeof(X25_errmsg));
|
|
#ifdef DEBUG
|
|
fprintf(stderr, "x25_input(%s): %s !\n", bufp, X25_errmsg);
|
|
#endif
|
|
errno = EINVAL;
|
|
return(-1);
|
|
}
|
|
|
|
|
|
if ((p = strchr(bufp, '/')) != NULL) {
|
|
*p = '\0';
|
|
sigdigits = atoi(p + 1);
|
|
} else {
|
|
sigdigits = strlen(bufp);
|
|
}
|
|
|
|
if (strlen(bufp) < 1 || strlen(bufp) > 15 || sigdigits > strlen(bufp)) {
|
|
if (p != NULL)
|
|
*p = '/';
|
|
safe_strncpy(X25_errmsg, _("Invalid address"), sizeof(X25_errmsg));
|
|
#ifdef DEBUG
|
|
fprintf(stderr, "x25_input(%s): %s !\n", bufp, X25_errmsg);
|
|
#endif
|
|
errno = EINVAL;
|
|
return(-1);
|
|
}
|
|
|
|
strncpy(ptr, bufp, sigdigits+1);
|
|
|
|
/* All done. */
|
|
#ifdef DEBUG
|
|
fprintf(stderr, "x25_input(%s)\n", bufp);
|
|
#endif
|
|
|
|
return sigdigits;
|
|
}
|
|
|
|
|
|
/* Display an error message. */
|
|
static void
|
|
X25_herror(const char *text)
|
|
{
|
|
if (text == NULL) fprintf(stderr, "%s\n", X25_errmsg);
|
|
else fprintf(stderr, "%s: %s\n", text, X25_errmsg);
|
|
}
|
|
|
|
|
|
static int
|
|
X25_hinput(char *bufp, struct sockaddr_storage *sasp)
|
|
{
|
|
struct sockaddr *sap = (struct sockaddr *)sasp;
|
|
if (X25_input(0, bufp, sasp) < 0) return(-1);
|
|
sap->sa_family = ARPHRD_X25;
|
|
return(0);
|
|
}
|
|
|
|
|
|
struct hwtype x25_hwtype = {
|
|
"x25", NULL, /*"CCITT X.25",*/ ARPHRD_X25, X25_ADDR_LEN,
|
|
X25_print, X25_hinput, NULL
|
|
};
|
|
|
|
struct aftype x25_aftype =
|
|
{
|
|
"x25", NULL, /*"CCITT X.25", */ AF_X25, X25_ADDR_LEN,
|
|
X25_print, X25_sprint, X25_input, X25_herror,
|
|
X25_rprint, X25_rinput, NULL /* getmask */,
|
|
-1,
|
|
"/proc/net/x25"
|
|
};
|
|
|
|
|
|
#endif /* HAVE_xxX25 */
|