New package: tpm-tools-1.3.8

This commit is contained in:
Toyam Cox 2016-01-07 22:40:29 -05:00
parent 5a2e78f5a0
commit 427ae3416b
6 changed files with 73 additions and 1 deletions

View file

@ -13,4 +13,4 @@ checksum=66eb4ff095542403db6b4bd4b574e8a5c08084fe4e9e5aa9a829ee84e20bea83
post_install() {
vlicense LICENSE
}
}

5
srcpkgs/trousers/REMOVE Normal file
View file

@ -0,0 +1,5 @@
case "$ACTION" in
purge)
[ -d var/lib/tpm ] && rm -rf var/lib/tpm
;;
esac

View file

@ -0,0 +1,2 @@
#!/bin/sh
exec logger -p daemon.info -t tcsd

View file

@ -0,0 +1,4 @@
#!/bin/sh
exec 2>&1
[ -d /var/lib/tpm ] || install -m 0700 -o tss -g tss -d /var/lib/tpm
exec chpst -u tss:tss tcsd -f

View file

@ -0,0 +1,47 @@
--- src/tspi/ps/tspps.c.orig 2015-11-18 12:45:47.585113542 +0100
+++ src/tspi/ps/tspps.c 2015-11-18 12:46:37.605577956 +0100
@@ -45,7 +45,7 @@
static int user_ps_fd = -1;
static MUTEX_DECLARE_INIT(user_ps_lock);
-#if (defined (__FreeBSD__) || defined (__OpenBSD__))
+#if !defined(__GLIBC__)
static MUTEX_DECLARE_INIT(user_ps_path);
#endif
static struct flock fl;
@@ -60,7 +60,7 @@
TSS_RESULT result;
char *file_name = NULL, *home_dir = NULL;
struct passwd *pwp;
-#if (defined (__linux) || defined (linux) || defined(__GLIBC__))
+#if defined(__GLIBC__)
struct passwd pw;
#endif
struct stat stat_buf;
@@ -72,7 +72,7 @@
*file = strdup(file_name);
return (*file) ? TSS_SUCCESS : TSPERR(TSS_E_OUTOFMEMORY);
}
-#if (defined (__FreeBSD__) || defined (__OpenBSD__))
+#if !defined(__GLIBC__)
MUTEX_LOCK(user_ps_path);
#endif
@@ -90,7 +90,7 @@
#else
setpwent();
while (1) {
-#if (defined (__linux) || defined (linux) || defined(__GLIBC__))
+#if defined(__GLIBC__)
rc = getpwent_r(&pw, buf, PASSWD_BUFSIZE, &pwp);
if (rc) {
LogDebugFn("USER PS: Error getting path to home directory: getpwent_r: %s",
@@ -99,7 +99,7 @@
return TSPERR(TSS_E_INTERNAL_ERROR);
}
-#elif (defined (__FreeBSD__) || defined (__OpenBSD__))
+#elif !defined(__GLIBC__)
if ((pwp = getpwent()) == NULL) {
LogDebugFn("USER PS: Error getting path to home directory: getpwent: %s",
strerror(rc));

View file

@ -0,0 +1,14 @@
--- src/tspi/tsp_tcsi_param.c.orig 2015-11-18 10:44:20.263987906 +0100
+++ src/tspi/tsp_tcsi_param.c 2015-11-18 10:45:20.524547393 +0100
@@ -11,7 +11,11 @@
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
+#if defined(__GLIBC__)
#include <bits/local_lim.h>
+#else
+#define HOST_NAME_MAX 64
+#endif
#include "trousers/tss.h"
#include "trousers/trousers.h"
#include "trousers_types.h"