summaryrefslogtreecommitdiff
path: root/kerberosIV/kafs/afssys.c
diff options
context:
space:
mode:
Diffstat (limited to 'kerberosIV/kafs/afssys.c')
-rw-r--r--kerberosIV/kafs/afssys.c410
1 files changed, 164 insertions, 246 deletions
diff --git a/kerberosIV/kafs/afssys.c b/kerberosIV/kafs/afssys.c
index 2c831e41abf..eb849791abc 100644
--- a/kerberosIV/kafs/afssys.c
+++ b/kerberosIV/kafs/afssys.c
@@ -1,302 +1,220 @@
-/* $Id: afssys.c,v 1.2 1996/09/16 03:18:08 tholo Exp $ */
-
-#include <sys/types.h>
-#include <sys/ioctl.h>
-#include <signal.h>
-#include <setjmp.h>
-#include <errno.h>
-#include <string.h>
-#include <unistd.h>
-
-#include <kerberosIV/krb.h>
-#include <kerberosIV/kafs.h>
-
-#include "afssysdefs.h"
-
-#define AUTH_SUPERUSER "afs"
+/* $KTH: afssys.c,v 1.53 1997/05/04 02:30:41 assar Exp $ */
/*
- * Here only ASCII characters are relevant.
+ * Copyright (c) 1995, 1996, 1997 Kungliga Tekniska Högskolan
+ * (Royal Institute of Technology, Stockholm, Sweden).
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgement:
+ * This product includes software developed by the Kungliga Tekniska
+ * Högskolan and its contributors.
+ *
+ * 4. Neither the name of the Institute nor the names of its contributors
+ * may be used to endorse or promote products derived from this software
+ * without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
*/
-#define IsAsciiUpper(c) ('A' <= (c) && (c) <= 'Z')
-
-#define ToAsciiLower(c) ((c) - 'A' + 'a')
-
-static void
-folddown(a, b)
- char *a, *b;
-{
- for (; *b; a++, b++)
- if (IsAsciiUpper(*b))
- *a = ToAsciiLower(*b);
- else
- *a = *b;
- *a = '\0';
-}
-
-#if !defined(linux) /* won't work there -- no SIGSYS, no syscall */
-
-int
-k_afsklog(realm)
- char *realm;
-{
- int k_errno;
- CREDENTIALS c;
- KTEXT_ST ticket;
- char username[256];
- char krealm[REALM_SZ];
-
- if (!k_hasafs())
- return KSUCCESS;
-
- if (realm == 0 || realm[0] == 0)
- {
- k_errno = krb_get_lrealm(krealm, 0);
- if (k_errno != KSUCCESS)
- return k_errno;
- realm = krealm;
- }
-
- k_errno = krb_get_cred(AUTH_SUPERUSER, "", realm, &c);
- if (k_errno != KSUCCESS)
- {
- k_errno = krb_mk_req(&ticket, AUTH_SUPERUSER, "", realm, 0);
- if (k_errno == KSUCCESS)
- k_errno = krb_get_cred(AUTH_SUPERUSER, "", realm, &c);
- }
-
- if (k_errno == KSUCCESS)
- {
- char cell[256];
- struct ViceIoctl parms;
- struct ClearToken ct;
- int32_t sizeof_x;
- char buf[2048], *t;
-
- folddown(cell, realm);
-
- /*
- * Build a struct ClearToken
- */
- ct.AuthHandle = c.kvno;
- bcopy((char *)c.session, ct.HandShakeKey, sizeof(c.session));
- ct.ViceId = getuid(); /* is this always valid? */
- ct.BeginTimestamp = 1 + c.issue_date;
- ct.EndTimestamp = krb_life_to_time(c.issue_date, c.lifetime);
-
- t = buf;
- /*
- * length of secret token followed by secret token
- */
- sizeof_x = c.ticket_st.length;
- bcopy((char *)&sizeof_x, t, sizeof(sizeof_x));
- t += sizeof(sizeof_x);
- bcopy((char *)c.ticket_st.dat, t, sizeof_x);
- t += sizeof_x;
- /*
- * length of clear token followed by clear token
- */
- sizeof_x = sizeof(ct);
- bcopy((char *)&sizeof_x, t, sizeof(sizeof_x));
- t += sizeof(sizeof_x);
- bcopy((char *)&ct, t, sizeof_x);
- t += sizeof_x;
-
- /*
- * do *not* mark as primary cell
- */
- sizeof_x = 0;
- bcopy((char *)&sizeof_x, t, sizeof(sizeof_x));
- t += sizeof(sizeof_x);
- /*
- * follow with cell name
- */
- sizeof_x = strlen(cell) + 1;
- bcopy(cell, t, sizeof_x);
- t += sizeof_x;
-
- /*
- * Build argument block
- */
- parms.in = buf;
- parms.in_size = t - buf;
- parms.out = 0;
- parms.out_size = 0;
- (void) k_pioctl(0, VIOCSETTOK, &parms, 0);
- }
- return k_errno;
-}
+#include "kafs_locl.h"
#define NO_ENTRY_POINT 0
#define SINGLE_ENTRY_POINT 1
#define MULTIPLE_ENTRY_POINT 2
#define SINGLE_ENTRY_POINT2 3
-#define AIX_ENTRY_POINTS 4
-#define UNKNOWN_ENTRY_POINT 5
+#define SINGLE_ENTRY_POINT3 4
+#define AIX_ENTRY_POINTS 5
+#define UNKNOWN_ENTRY_POINT 6
static int afs_entry_point = UNKNOWN_ENTRY_POINT;
+static int afs_syscalls[2];
+
int
-k_pioctl(a_path, o_opcode, a_paramsP, a_followSymlinks)
- char *a_path;
- int o_opcode;
- struct ViceIoctl *a_paramsP;
- int a_followSymlinks;
+k_pioctl(char *a_path,
+ int o_opcode,
+ struct ViceIoctl *a_paramsP,
+ int a_followSymlinks)
{
-#ifdef AFS_SYSCALL
- if (afs_entry_point == SINGLE_ENTRY_POINT)
- return syscall(AFS_SYSCALL, AFSCALL_PIOCTL,
- a_path, o_opcode, a_paramsP, a_followSymlinks);
+#ifndef NO_AFS
+ switch(afs_entry_point){
+#if defined(AFS_SYSCALL) || defined(AFS_SYSCALL2) || defined(AFS_SYSCALL3)
+ case SINGLE_ENTRY_POINT:
+ case SINGLE_ENTRY_POINT2:
+ case SINGLE_ENTRY_POINT3:
+ return syscall(afs_syscalls[0], AFSCALL_PIOCTL,
+ a_path, o_opcode, a_paramsP, a_followSymlinks);
#endif
-
-#ifdef AFS_PIOCTL
- if (afs_entry_point == MULTIPLE_ENTRY_POINT)
- return syscall(AFS_PIOCTL,
- a_path, o_opcode, a_paramsP, a_followSymlinks);
+#if defined(AFS_PIOCTL)
+ case MULTIPLE_ENTRY_POINT:
+ return syscall(afs_syscalls[0],
+ a_path, o_opcode, a_paramsP, a_followSymlinks);
#endif
-
-#ifdef AFS_SYSCALL2
- if (afs_entry_point == SINGLE_ENTRY_POINT2)
- return syscall(AFS_SYSCALL2, AFSCALL_PIOCTL,
- a_path, o_opcode, a_paramsP, a_followSymlinks);
-#endif
-
-#ifdef _AIX
- if (afs_entry_point == AIX_ENTRY_POINTS)
- return lpioctl(a_path, o_opcode, a_paramsP, a_followSymlinks);
-#endif
-
- errno = ENOSYS;
- kill(getpid(), SIGSYS); /* You loose! */
- return -1;
+ }
+
+ errno = ENOSYS;
+ kill(getpid(), SIGSYS); /* You loose! */
+#endif /* NO_AFS */
+ return -1;
}
int
-k_unlog()
+k_afs_cell_of_file(const char *path, char *cell, int len)
{
- struct ViceIoctl parms;
- bzero((char *)&parms, sizeof(parms));
- return k_pioctl(0, VIOCUNLOG, &parms, 0);
+ struct ViceIoctl parms;
+ parms.in = NULL;
+ parms.in_size = 0;
+ parms.out = cell;
+ parms.out_size = len;
+ return k_pioctl((char*)path, VIOC_FILE_CELL_NAME, &parms, 1);
}
int
-k_setpag()
+k_unlog(void)
{
-#ifdef AFS_SYSCALL
- if (afs_entry_point == SINGLE_ENTRY_POINT)
- return syscall(AFS_SYSCALL, AFSCALL_SETPAG);
-#endif
-
-#ifdef AFS_SETPAG
- if (afs_entry_point == MULTIPLE_ENTRY_POINT)
- return syscall(AFS_SETPAG);
-#endif
+ struct ViceIoctl parms;
+ memset(&parms, 0, sizeof(parms));
+ return k_pioctl(0, VIOCUNLOG, &parms, 0);
+}
-#ifdef AFS_SYSCALL2
- if (afs_entry_point == SINGLE_ENTRY_POINT2)
- return syscall(AFS_SYSCALL2, AFSCALL_SETPAG);
+int
+k_setpag(void)
+{
+#ifndef NO_AFS
+ switch(afs_entry_point){
+#if defined(AFS_SYSCALL) || defined(AFS_SYSCALL2) || defined(AFS_SYSCALL3)
+ case SINGLE_ENTRY_POINT:
+ case SINGLE_ENTRY_POINT2:
+ case SINGLE_ENTRY_POINT3:
+ return syscall(afs_syscalls[0], AFSCALL_SETPAG);
#endif
-
-#ifdef _AIX
- if (afs_entry_point == AIX_ENTRY_POINTS)
- return lsetpag();
+#if defined(AFS_PIOCTL)
+ case MULTIPLE_ENTRY_POINT:
+ return syscall(afs_syscalls[1]);
#endif
-
- errno = ENOSYS;
- kill(getpid(), SIGSYS); /* You loose! */
- return -1;
+ }
+
+ errno = ENOSYS;
+ kill(getpid(), SIGSYS); /* You loose! */
+#endif /* NO_AFS */
+ return -1;
}
-#endif /* defined(linux) */
+
static jmp_buf catch_SIGSYS;
-static void
-SIGSYS_handler()
+void
+SIGSYS_handler(int sig)
{
- errno = 0;
- longjmp(catch_SIGSYS, 1);
+ errno = 0;
+ longjmp(catch_SIGSYS, 1);
}
int
-k_hasafs()
+k_hasafs(void)
{
- int saved_errno;
- void (*saved_func)();
- struct ViceIoctl parms;
+ int saved_errno;
+ void (*saved_func)();
+ struct ViceIoctl parms;
-#if defined(linux)
- return 0;
-#else
- /*
- * Already checked presence of AFS syscalls?
- */
- if (afs_entry_point != UNKNOWN_ENTRY_POINT)
- return afs_entry_point != NO_ENTRY_POINT;
-
- /*
- * Probe kernel for AFS specific syscalls,
- * they (currently) come in two flavors.
- * If the syscall is absent we recive a SIGSYS.
- */
- afs_entry_point = NO_ENTRY_POINT;
- bzero(&parms, sizeof(parms));
+ /*
+ * Already checked presence of AFS syscalls?
+ */
+ if (afs_entry_point != UNKNOWN_ENTRY_POINT)
+ return afs_entry_point != NO_ENTRY_POINT;
+
+ /*
+ * Probe kernel for AFS specific syscalls,
+ * they (currently) come in two flavors.
+ * If the syscall is absent we recive a SIGSYS.
+ */
+ afs_entry_point = NO_ENTRY_POINT;
+ memset(&parms, 0, sizeof(parms));
- saved_errno = errno;
- saved_func = signal(SIGSYS, SIGSYS_handler);
+ saved_errno = errno;
+#ifndef NO_AFS
+ saved_func = signal(SIGSYS, SIGSYS_handler);
#ifdef AFS_SYSCALL
- if (setjmp(catch_SIGSYS) == 0)
- {
- syscall(AFS_SYSCALL, AFSCALL_PIOCTL,
- 0, VIOCSETTOK, &parms, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
- if (errno == EINVAL)
+ if (setjmp(catch_SIGSYS) == 0)
{
- afs_entry_point = SINGLE_ENTRY_POINT;
- goto done;
+ syscall(AFS_SYSCALL, AFSCALL_PIOCTL,
+ 0, VIOCSETTOK, &parms, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
+ if (errno == EINVAL)
+ {
+ afs_entry_point = SINGLE_ENTRY_POINT;
+ afs_syscalls[0] = AFS_SYSCALL;
+ goto done;
+ }
}
- }
#endif /* AFS_SYSCALL */
#ifdef AFS_PIOCTL
- if (setjmp(catch_SIGSYS) == 0)
- {
- syscall(AFS_PIOCTL,
- 0, VIOCSETTOK, &parms, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
- if (errno == EINVAL)
+ if (setjmp(catch_SIGSYS) == 0)
{
- afs_entry_point = MULTIPLE_ENTRY_POINT;
- goto done;
+ syscall(AFS_PIOCTL,
+ 0, VIOCSETTOK, &parms, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
+ if (errno == EINVAL)
+ {
+ afs_entry_point = MULTIPLE_ENTRY_POINT;
+ afs_syscalls[0] = AFS_PIOCTL;
+ afs_syscalls[1] = AFS_SETPAG;
+ goto done;
+ }
}
- }
#endif /* AFS_PIOCTL */
#ifdef AFS_SYSCALL2
- if (setjmp(catch_SIGSYS) == 0)
- {
- syscall(AFS_SYSCALL2, AFSCALL_PIOCTL,
- 0, VIOCSETTOK, &parms, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
- if (errno == EINVAL)
+ if (setjmp(catch_SIGSYS) == 0)
{
- afs_entry_point = SINGLE_ENTRY_POINT2;
- goto done;
+ syscall(AFS_SYSCALL2, AFSCALL_PIOCTL,
+ 0, VIOCSETTOK, &parms, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
+ if (errno == EINVAL)
+ {
+ afs_entry_point = SINGLE_ENTRY_POINT2;
+ afs_syscalls[0] = AFS_SYSCALL2;
+ goto done;
+ }
}
- }
#endif /* AFS_SYSCALL */
-#ifdef _AIX
- if (setjmp(catch_SIGSYS) == 0)
- {
- lpioctl(0, 0, 0, 0);
- if (errno == EINVAL)
+#ifdef AFS_SYSCALL3
+ if (setjmp(catch_SIGSYS) == 0)
{
- afs_entry_point = AIX_ENTRY_POINTS;
- goto done;
+ syscall(AFS_SYSCALL3, AFSCALL_PIOCTL,
+ 0, VIOCSETTOK, &parms, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
+ if (errno == EINVAL)
+ {
+ afs_entry_point = SINGLE_ENTRY_POINT3;
+ afs_syscalls[0] = AFS_SYSCALL3;
+ goto done;
+ }
}
- }
-#endif
+#endif /* AFS_SYSCALL */
- done:
- (void) signal(SIGSYS, saved_func);
- errno = saved_errno;
- return afs_entry_point != NO_ENTRY_POINT;
-#endif /* linux */
+done:
+ signal(SIGSYS, saved_func);
+#endif /* NO_AFS */
+ errno = saved_errno;
+ return afs_entry_point != NO_ENTRY_POINT;
}