2006-11-26 03:43:56 -07:00
|
|
|
|
/* $Xorg: auth.c,v 1.4 2001/02/09 02:05:59 xorgcvs Exp $ */
|
|
|
|
|
/******************************************************************************
|
|
|
|
|
|
|
|
|
|
Copyright 1993, 1998 The Open Group
|
|
|
|
|
|
|
|
|
|
Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
|
documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
|
the above copyright notice appear in all copies and that both that
|
|
|
|
|
copyright notice and this permission notice appear in supporting
|
|
|
|
|
documentation.
|
|
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
|
|
|
|
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
|
|
Except as contained in this notice, the name of The Open Group shall not be
|
|
|
|
|
used in advertising or otherwise to promote the sale, use or other dealings
|
|
|
|
|
in this Software without prior written authorization from The Open Group.
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
/* $XFree86: xc/programs/xsm/auth.c,v 1.6 2001/01/17 23:46:28 dawes Exp $ */
|
|
|
|
|
|
|
|
|
|
#include "xsm.h"
|
|
|
|
|
|
|
|
|
|
#include <X11/ICE/ICEutil.h>
|
|
|
|
|
#include "auth.h"
|
|
|
|
|
|
2013-03-09 09:22:38 -07:00
|
|
|
|
#ifdef HAVE_MKSTEMP
|
2006-11-26 03:43:56 -07:00
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#endif
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
|
|
static char *addAuthFile = NULL;
|
|
|
|
|
static char *remAuthFile = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Host Based Authentication Callback. This callback is invoked if
|
|
|
|
|
* the connecting client can't offer any authentication methods that
|
|
|
|
|
* we can accept. We can accept/reject based on the hostname.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
Bool
|
|
|
|
|
HostBasedAuthProc(char *hostname)
|
|
|
|
|
{
|
|
|
|
|
return (0); /* For now, we don't support host based authentication */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* We use temporary files which contain commands to add/remove entries from
|
|
|
|
|
* the .ICEauthority file.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
write_iceauth(FILE *addfp, FILE *removefp, IceAuthDataEntry *entry)
|
|
|
|
|
{
|
|
|
|
|
fprintf (addfp,
|
|
|
|
|
"add %s \"\" %s %s ",
|
|
|
|
|
entry->protocol_name,
|
|
|
|
|
entry->network_id,
|
|
|
|
|
entry->auth_name);
|
|
|
|
|
fprintfhex (addfp, entry->auth_data_length, entry->auth_data);
|
|
|
|
|
fprintf (addfp, "\n");
|
|
|
|
|
|
|
|
|
|
fprintf (removefp,
|
|
|
|
|
"remove protoname=%s protodata=\"\" netid=%s authname=%s\n",
|
|
|
|
|
entry->protocol_name,
|
|
|
|
|
entry->network_id,
|
|
|
|
|
entry->auth_name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-03-09 09:22:38 -07:00
|
|
|
|
#ifndef HAVE_MKSTEMP
|
2006-11-26 03:43:56 -07:00
|
|
|
|
static char *
|
2013-03-09 09:22:38 -07:00
|
|
|
|
unique_filename(const char *path, const char *prefix)
|
2006-11-26 03:43:56 -07:00
|
|
|
|
#else
|
|
|
|
|
static char *
|
2013-03-09 09:22:38 -07:00
|
|
|
|
unique_filename(const char *path, const char *prefix, int *pFd)
|
2006-11-26 03:43:56 -07:00
|
|
|
|
#endif
|
|
|
|
|
{
|
2013-03-09 09:22:38 -07:00
|
|
|
|
#ifndef HAVE_MKSTEMP
|
2006-11-26 03:43:56 -07:00
|
|
|
|
#ifndef X_NOT_POSIX
|
|
|
|
|
return ((char *) tempnam (path, prefix));
|
|
|
|
|
#else
|
|
|
|
|
char tempFile[PATH_MAX];
|
|
|
|
|
char *tmp;
|
|
|
|
|
|
2010-10-31 14:17:58 -06:00
|
|
|
|
snprintf (tempFile, sizeof(tempFile), "%s/%sXXXXXX", path, prefix);
|
2006-11-26 03:43:56 -07:00
|
|
|
|
tmp = (char *) mktemp (tempFile);
|
|
|
|
|
if (tmp)
|
|
|
|
|
{
|
2010-10-31 14:17:58 -06:00
|
|
|
|
return strdup(tmp);
|
2006-11-26 03:43:56 -07:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return (NULL);
|
|
|
|
|
#endif
|
|
|
|
|
#else
|
|
|
|
|
char tempFile[PATH_MAX];
|
|
|
|
|
char *ptr;
|
|
|
|
|
|
2010-10-31 14:17:58 -06:00
|
|
|
|
snprintf (tempFile, sizeof(tempFile), "%s/%sXXXXXX", path, prefix);
|
|
|
|
|
ptr = strdup(tempFile);
|
2006-11-26 03:43:56 -07:00
|
|
|
|
if (ptr != NULL)
|
|
|
|
|
{
|
|
|
|
|
*pFd = mkstemp(ptr);
|
|
|
|
|
}
|
|
|
|
|
return ptr;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Provide authentication data to clients that wish to connect
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#define MAGIC_COOKIE_LEN 16
|
|
|
|
|
|
|
|
|
|
Status
|
|
|
|
|
SetAuthentication(int count, IceListenObj *listenObjs,
|
|
|
|
|
IceAuthDataEntry **authDataEntries)
|
|
|
|
|
{
|
|
|
|
|
FILE *addfp = NULL;
|
|
|
|
|
FILE *removefp = NULL;
|
2013-03-09 09:22:38 -07:00
|
|
|
|
const char *path;
|
|
|
|
|
mode_t original_umask;
|
2006-11-26 03:43:56 -07:00
|
|
|
|
char command[256];
|
|
|
|
|
int i;
|
2013-03-09 09:22:38 -07:00
|
|
|
|
#ifdef HAVE_MKSTEMP
|
2006-11-26 03:43:56 -07:00
|
|
|
|
int fd;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
original_umask = umask (0077); /* disallow non-owner access */
|
|
|
|
|
|
2013-03-09 09:22:38 -07:00
|
|
|
|
path = getenv ("SM_SAVE_DIR");
|
2006-11-26 03:43:56 -07:00
|
|
|
|
if (!path)
|
|
|
|
|
{
|
2013-03-09 09:22:38 -07:00
|
|
|
|
path = getenv ("HOME");
|
2006-11-26 03:43:56 -07:00
|
|
|
|
if (!path)
|
|
|
|
|
path = ".";
|
|
|
|
|
}
|
2013-03-09 09:22:38 -07:00
|
|
|
|
#ifndef HAVE_MKSTEMP
|
2006-11-26 03:43:56 -07:00
|
|
|
|
if ((addAuthFile = unique_filename (path, ".xsm")) == NULL)
|
|
|
|
|
goto bad;
|
|
|
|
|
|
|
|
|
|
if (!(addfp = fopen (addAuthFile, "w")))
|
|
|
|
|
goto bad;
|
|
|
|
|
|
|
|
|
|
if ((remAuthFile = unique_filename (path, ".xsm")) == NULL)
|
|
|
|
|
goto bad;
|
|
|
|
|
|
|
|
|
|
if (!(removefp = fopen (remAuthFile, "w")))
|
|
|
|
|
goto bad;
|
|
|
|
|
#else
|
|
|
|
|
if ((addAuthFile = unique_filename (path, ".xsm", &fd)) == NULL)
|
|
|
|
|
goto bad;
|
|
|
|
|
|
|
|
|
|
if (!(addfp = fdopen(fd, "wb")))
|
|
|
|
|
goto bad;
|
|
|
|
|
|
|
|
|
|
if ((remAuthFile = unique_filename (path, ".xsm", &fd)) == NULL)
|
|
|
|
|
goto bad;
|
|
|
|
|
|
|
|
|
|
if (!(removefp = fdopen(fd, "wb")))
|
|
|
|
|
goto bad;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if ((*authDataEntries = (IceAuthDataEntry *) XtMalloc (
|
|
|
|
|
count * 2 * sizeof (IceAuthDataEntry))) == NULL)
|
|
|
|
|
goto bad;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < count * 2; i += 2)
|
|
|
|
|
{
|
|
|
|
|
(*authDataEntries)[i].network_id =
|
|
|
|
|
IceGetListenConnectionString (listenObjs[i/2]);
|
|
|
|
|
(*authDataEntries)[i].protocol_name = "ICE";
|
|
|
|
|
(*authDataEntries)[i].auth_name = "MIT-MAGIC-COOKIE-1";
|
|
|
|
|
|
|
|
|
|
(*authDataEntries)[i].auth_data =
|
|
|
|
|
IceGenerateMagicCookie (MAGIC_COOKIE_LEN);
|
|
|
|
|
(*authDataEntries)[i].auth_data_length = MAGIC_COOKIE_LEN;
|
|
|
|
|
|
|
|
|
|
(*authDataEntries)[i+1].network_id =
|
|
|
|
|
IceGetListenConnectionString (listenObjs[i/2]);
|
|
|
|
|
(*authDataEntries)[i+1].protocol_name = "XSMP";
|
|
|
|
|
(*authDataEntries)[i+1].auth_name = "MIT-MAGIC-COOKIE-1";
|
|
|
|
|
|
|
|
|
|
(*authDataEntries)[i+1].auth_data =
|
|
|
|
|
IceGenerateMagicCookie (MAGIC_COOKIE_LEN);
|
|
|
|
|
(*authDataEntries)[i+1].auth_data_length = MAGIC_COOKIE_LEN;
|
|
|
|
|
|
|
|
|
|
write_iceauth (addfp, removefp, &(*authDataEntries)[i]);
|
|
|
|
|
write_iceauth (addfp, removefp, &(*authDataEntries)[i+1]);
|
|
|
|
|
|
|
|
|
|
IceSetPaAuthData (2, &(*authDataEntries)[i]);
|
|
|
|
|
|
|
|
|
|
IceSetHostBasedAuthProc (listenObjs[i/2], HostBasedAuthProc);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fclose (addfp);
|
|
|
|
|
fclose (removefp);
|
|
|
|
|
|
|
|
|
|
umask (original_umask);
|
|
|
|
|
|
2010-10-31 14:17:58 -06:00
|
|
|
|
snprintf (command, sizeof(command), "iceauth source %s", addAuthFile);
|
2006-11-26 03:43:56 -07:00
|
|
|
|
execute_system_command (command);
|
|
|
|
|
|
2010-10-31 14:17:58 -06:00
|
|
|
|
remove (addAuthFile);
|
2006-11-26 03:43:56 -07:00
|
|
|
|
|
|
|
|
|
return (1);
|
|
|
|
|
|
|
|
|
|
bad:
|
|
|
|
|
|
|
|
|
|
if (addfp)
|
|
|
|
|
fclose (addfp);
|
|
|
|
|
|
|
|
|
|
if (removefp)
|
|
|
|
|
fclose (removefp);
|
|
|
|
|
|
|
|
|
|
if (addAuthFile)
|
|
|
|
|
{
|
2010-10-31 14:17:58 -06:00
|
|
|
|
remove (addAuthFile);
|
2006-11-26 03:43:56 -07:00
|
|
|
|
free (addAuthFile);
|
|
|
|
|
}
|
|
|
|
|
if (remAuthFile)
|
|
|
|
|
{
|
2010-10-31 14:17:58 -06:00
|
|
|
|
remove (remAuthFile);
|
2006-11-26 03:43:56 -07:00
|
|
|
|
free (remAuthFile);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Free up authentication data.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
FreeAuthenticationData(int count, IceAuthDataEntry *authDataEntries)
|
|
|
|
|
{
|
|
|
|
|
/* Each transport has entries for ICE and XSMP */
|
|
|
|
|
|
|
|
|
|
char command[256];
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < count * 2; i++)
|
|
|
|
|
{
|
|
|
|
|
free (authDataEntries[i].network_id);
|
|
|
|
|
free (authDataEntries[i].auth_data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
XtFree ((char *) authDataEntries);
|
|
|
|
|
|
2010-10-31 14:17:58 -06:00
|
|
|
|
snprintf (command, sizeof(command), "iceauth source %s", remAuthFile);
|
2006-11-26 03:43:56 -07:00
|
|
|
|
execute_system_command (command);
|
|
|
|
|
|
2010-10-31 14:17:58 -06:00
|
|
|
|
remove (remAuthFile);
|
2006-11-26 03:43:56 -07:00
|
|
|
|
|
|
|
|
|
free (addAuthFile);
|
|
|
|
|
free (remAuthFile);
|
|
|
|
|
}
|