search for: satid

Displaying 7 results from an estimated 7 matches for "satid".

Did you mean: said
2000 Jul 20
1
WITH_IRIX_AUDIT causes error (fwd)
...: Brian Hanna <bdhanna at cmrr.umn.edu> To: openssh at openssh.com Subject: WITH_IRIX_AUDIT causes error Hi, I compiled and was able to run sshd. I started ssh as root and was able to get to my local host. I dropped down to a regular user and tried ssh again. I got the error error setting satid and no connection. I read a bit in the archives and found the patch that Mark Stone posted regarding WITH_IRIX_*. The patch referred to uidswap.c and permanently_set_uid(). I found his patch was already in the version I compiled. I could see that if WITH_IRIX_AUDIT was not defined, the satsetid...
2000 Aug 02
1
IRIX 6.5.5m openssh-2.1.1p4 IRIX_AUDIT PROBLEM
...g configuration data /free/bozo/sgi/etc/ssh_config debug: Applying options for * debug: Seeding random number generator debug: ssh_connect: getuid 82409 geteuid 82409 anon 1 debug: Connecting to 1.2.3.4 [1.2.3.4] port 3400. debug: Connection established. debug: Setting sat id to 82409 error setting satid: Operation not permitted debug: Calling cleanup 0x1003ddc0(0x0) ---END ERROR LISTING--- The acutal error is generated from lines 89-95 of uidswap.c ---BEGIN UIDSWAP CODE--- 82 /* 83 * Permanently sets all uids to the given uid. This cannot be 84 * called while temporarily_use_u...
2002 Feb 15
1
IRIX cleanup.
...w->pw_name, strerror(errno)); +#endif /* WITH_IRIX_PROJECT */ +#ifdef WITH_IRIX_AUDIT + if (sysconf(_SC_AUDIT)) { + debug("Setting sat id to %d", (int) pw->pw_uid); + if (satsetid(pw->pw_uid)) + debug("error setting satid: %.100s", strerror(errno)); + } +#endif /* WITH_IRIX_AUDIT */ +} + + +#endif /* defined(WITH_IRIX_PROJECT) || defined(WITH_IRIX_JOBS) || defined(WITH_IRIX_ARRAY) */ diff -urN openssh-3.0.2p1/openbsd-compat/bsd-irix.h openssh-irix/openbsd-compat/bsd-irix.h --- openssh-3.0.2p1/openbsd-com...
2001 Mar 15
1
News from AIX
...sion.c --- session.c 2001/02/18 19:13:34 1.79 +++ session.c 2001/03/15 15:13:44 @@ -89,6 +89,10 @@ # define S_UNOFILE_HARD S_UNOFILE "_hard" #endif +#ifdef _AIX +# include <uinfo.h> +#endif + /* types */ #define TTYSZ 64 @@ -1119,6 +1123,25 @@ debug("error setting satid: %.100s", strerror(errno)); } #endif /* WITH_IRIX_AUDIT */ + +#ifdef _AIX + /* AIX has a "usrinfo" area where logname and + * other stuff is stored - a few applications + * actually use this and die if it's not set + */ + { + char ui_buf[1000]; + int...
2000 Jun 21
0
IRIX patches
...ions must work in all of the following cases: *************** *** 83,88 **** --- 86,99 ---- void permanently_set_uid(uid_t uid) { + #ifdef WITH_IRIX_AUDIT + if (sysconf(_SC_AUDIT)) { + debug("Setting sat id to %d", (int) uid); + if (satsetid(uid)) + fatal("error setting satid: %.100s", strerror(errno)); + } + #endif /* WITH_IRIX_AUDIT */ + if (setuid(uid) < 0) debug("setuid %d: %.100s", (int) uid, strerror(errno)); }
2000 Nov 14
14
New snapshot
I have just uploaded a new snapshot to: http://www.mindrot.org/misc/openssh/openssh-SNAP-20001114.tar.gz This snapshot includes Markus Friedl's new SSH2 RSA authentication work and -R portforwarding for SSH2. Please give these a good test. The new RSA authentications works similar to the current SSH2 DSA keys, but requires a little modification to config files. Currently RSA key cannot be
2006 Aug 30
30
Testing for the 4.4p1 release
Hi, The 4.4p1 release is approaching now, so we are now asking people to actively test snapshots or CVS and report back to the mailing list. Snapshots are available from http://www.mindrot.org/openssh_snap or from any of the mirrors listed on http://www.openssh.org/portable.html The latter page also includes instructions for checking out portable OpenSSH via anonymous CVS. This release