forked from pool/xauth
149 lines
4.9 KiB
Diff
149 lines
4.9 KiB
Diff
|
Index: xauth-1.0.5/gethost.c
|
||
|
===================================================================
|
||
|
--- xauth-1.0.5.orig/gethost.c
|
||
|
+++ xauth-1.0.5/gethost.c
|
||
|
@@ -244,7 +244,8 @@ struct addrlist *get_address_info (
|
||
|
int family,
|
||
|
char *fulldpyname,
|
||
|
int prefix,
|
||
|
- char *host)
|
||
|
+ char *host,
|
||
|
+ char *localhostname)
|
||
|
{
|
||
|
struct addrlist *retval = NULL;
|
||
|
int len = 0;
|
||
|
@@ -274,7 +275,7 @@ struct addrlist *get_address_info (
|
||
|
if (prefix == 0 && (strncmp (fulldpyname, "unix:", 5) == 0 ||
|
||
|
fulldpyname[0] == ':')) {
|
||
|
|
||
|
- if (!get_local_hostname (buf, sizeof buf)) {
|
||
|
+ if (!get_local_hostname (buf, sizeof buf, localhostname)) {
|
||
|
len = 0;
|
||
|
} else {
|
||
|
src = buf;
|
||
|
Index: xauth-1.0.5/parsedpy.c
|
||
|
===================================================================
|
||
|
--- xauth-1.0.5.orig/parsedpy.c
|
||
|
+++ xauth-1.0.5/parsedpy.c
|
||
|
@@ -74,20 +74,24 @@ copystring (char *src, int len)
|
||
|
|
||
|
|
||
|
char *
|
||
|
-get_local_hostname (char *buf, int maxlen)
|
||
|
+get_local_hostname (char *buf, int maxlen, char *localhostname)
|
||
|
{
|
||
|
buf[0] = '\0';
|
||
|
+ if (localhostname)
|
||
|
+ strncpy(buf, localhostname, maxlen);
|
||
|
+ else
|
||
|
(void) XmuGetHostname (buf, maxlen);
|
||
|
+
|
||
|
return (buf[0] ? buf : NULL);
|
||
|
}
|
||
|
|
||
|
#ifndef UNIXCONN
|
||
|
static char *
|
||
|
-copyhostname (void)
|
||
|
+copyhostname (char *localhostname)
|
||
|
{
|
||
|
char buf[256];
|
||
|
|
||
|
- return (get_local_hostname (buf, sizeof buf) ?
|
||
|
+ return (get_local_hostname (buf, sizeof buf, localhostname) ?
|
||
|
copystring (buf, strlen (buf)) : NULL);
|
||
|
}
|
||
|
#endif
|
||
|
@@ -97,6 +101,7 @@ copyhostname (void)
|
||
|
*/
|
||
|
Bool
|
||
|
parse_displayname (char *displayname,
|
||
|
+ char *localhostname,
|
||
|
int *familyp, /* return */
|
||
|
char **hostp, /* return */
|
||
|
int *dpynump, /* return */
|
||
|
@@ -138,7 +143,7 @@ parse_displayname (char *displayname,
|
||
|
host = copystring ("0", 1);
|
||
|
family = FamilyDECnet;
|
||
|
} else {
|
||
|
- host = copyhostname ();
|
||
|
+ host = copyhostname (localhostname);
|
||
|
family = FamilyInternet;
|
||
|
}
|
||
|
#endif
|
||
|
Index: xauth-1.0.5/process.c
|
||
|
===================================================================
|
||
|
--- xauth-1.0.5.orig/process.c
|
||
|
+++ xauth-1.0.5/process.c
|
||
|
@@ -466,7 +466,7 @@ read_auth_entries(FILE *fp, Bool numeric
|
||
|
}
|
||
|
|
||
|
static Bool
|
||
|
-get_displayname_auth(char *displayname, AuthList **authl)
|
||
|
+get_displayname_auth(char *displayname, AuthList **authl, char *localhostname)
|
||
|
{
|
||
|
int family;
|
||
|
char *host = NULL, *rest = NULL;
|
||
|
@@ -486,11 +486,13 @@ get_displayname_auth(char *displayname,
|
||
|
prelen = (cp - displayname);
|
||
|
|
||
|
if (!parse_displayname (displayname + ((prelen > 0) ? prelen + 1 : 0),
|
||
|
+ localhostname,
|
||
|
&family, &host, &dpynum, &scrnum, &rest)) {
|
||
|
return False;
|
||
|
}
|
||
|
|
||
|
- addrlist_head = get_address_info(family, displayname, prelen, host);
|
||
|
+ addrlist_head = get_address_info(family, displayname, prelen, host,
|
||
|
+ localhostname);
|
||
|
if (addrlist_head) {
|
||
|
char buf[40]; /* want to hold largest display num */
|
||
|
unsigned short dpylen;
|
||
|
@@ -1220,13 +1222,19 @@ iterdpy (char *inputfilename, int lineno
|
||
|
Xauth *tmp_auth;
|
||
|
AuthList *proto_head, *proto;
|
||
|
AuthList *l, *next;
|
||
|
+ /*
|
||
|
+ * get saved local address from environment in case the host
|
||
|
+ * name has changed after the credential was added.
|
||
|
+ */
|
||
|
+ char *xlocalhostname = getenv("XAUTHLOCALHOSTNAME");
|
||
|
+
|
||
|
|
||
|
/*
|
||
|
* iterate
|
||
|
*/
|
||
|
for (i = start; i < argc; i++) {
|
||
|
char *displayname = argv[i];
|
||
|
- if (!get_displayname_auth (displayname, &proto_head)) {
|
||
|
+ if (!get_displayname_auth (displayname, &proto_head, xlocalhostname)) {
|
||
|
prefix (inputfilename, lineno);
|
||
|
baddisplayname (displayname, argv[0]);
|
||
|
errors++;
|
||
|
@@ -1569,7 +1577,7 @@ do_add(char *inputfilename, int lineno,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
- if (!get_displayname_auth (dpyname, &list)) {
|
||
|
+ if (!get_displayname_auth (dpyname, &list, NULL)) {
|
||
|
prefix (inputfilename, lineno);
|
||
|
baddisplayname (dpyname, argv[0]);
|
||
|
free (key);
|
||
|
Index: xauth-1.0.5/xauth.h
|
||
|
===================================================================
|
||
|
--- xauth-1.0.5.orig/xauth.h
|
||
|
+++ xauth-1.0.5/xauth.h
|
||
|
@@ -51,10 +51,10 @@ struct addrlist {
|
||
|
};
|
||
|
|
||
|
extern char *get_hostname ( Xauth *auth );
|
||
|
-extern struct addrlist *get_address_info ( int family, char *fulldpyname, int prefix, char *host);
|
||
|
+extern struct addrlist *get_address_info ( int family, char *fulldpyname, int prefix, char *host, char *localhostname);
|
||
|
extern char *copystring ( char *src, int len );
|
||
|
-extern char *get_local_hostname ( char *buf, int maxlen );
|
||
|
-extern Bool parse_displayname ( char *displayname, int *familyp, char **hostp, int *dpynump, int *scrnump, char **restp );
|
||
|
+extern char *get_local_hostname ( char *buf, int maxlen , char *localhostname);
|
||
|
+extern Bool parse_displayname ( char *displayname, char *localhostname, int *familyp, char **hostp, int *dpynump, int *scrnump, char **restp );
|
||
|
extern int auth_initialize ( char *authfilename );
|
||
|
extern int auth_finalize ( void );
|
||
|
extern int process_command ( char *inputfilename, int lineno, int argc, char **argv );
|