- (djm) Sync openbsd-compat with OpenBSD CVS too

This commit is contained in:
Damien Miller 2002-02-13 16:00:15 +11:00
parent 3db5f530d0
commit 8e3bdca1da
8 changed files with 107 additions and 70 deletions

View File

@ -34,6 +34,7 @@
[sftp-client.c sftp-client.h sftp-glob.c sftp-glob.h sftp.h] [sftp-client.c sftp-client.h sftp-glob.c sftp-glob.h sftp.h]
[sftp-int.c sftp-int.h] [sftp-int.c sftp-int.h]
API cleanup and backwards compat for filexfer v.0 servers; ok markus@ API cleanup and backwards compat for filexfer v.0 servers; ok markus@
- (djm) Sync openbsd-compat with OpenBSD CVS too
20020210 20020210
- (djm) OpenBSD CVS Sync - (djm) OpenBSD CVS Sync
@ -7581,4 +7582,4 @@
- Wrote replacements for strlcpy and mkdtemp - Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1 - Released 1.0pre1
$Id: ChangeLog,v 1.1848 2002/02/13 03:10:32 djm Exp $ $Id: ChangeLog,v 1.1849 2002/02/13 05:00:15 djm Exp $

View File

@ -1,4 +1,4 @@
/* $OpenBSD: dirname.c,v 1.5 2001/06/27 00:58:54 lebel Exp $ */ /* $OpenBSD: dirname.c,v 1.6 2001/06/28 04:27:19 pjanzen Exp $ */
/* /*
* Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> * Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com>
@ -31,7 +31,7 @@
#ifndef HAVE_DIRNAME #ifndef HAVE_DIRNAME
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
static char rcsid[] = "$OpenBSD: dirname.c,v 1.5 2001/06/27 00:58:54 lebel Exp $"; static char rcsid[] = "$OpenBSD: dirname.c,v 1.6 2001/06/28 04:27:19 pjanzen Exp $";
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#include <errno.h> #include <errno.h>
@ -70,7 +70,7 @@ dirname(path)
} while (endp > path && *endp == '/'); } while (endp > path && *endp == '/');
} }
if (endp - path + 1 > sizeof(bname)) { if (endp - path + 2 > sizeof(bname)) {
errno = ENAMETOOLONG; errno = ENAMETOOLONG;
return(NULL); return(NULL);
} }

View File

@ -1,4 +1,4 @@
/* $OpenBSD: queue.h,v 1.16 2000/09/07 19:47:59 art Exp $ */ /* $OpenBSD: queue.h,v 1.22 2001/06/23 04:39:35 angelos Exp $ */
/* $NetBSD: queue.h,v 1.11 1996/05/16 05:17:14 mycroft Exp $ */ /* $NetBSD: queue.h,v 1.11 1996/05/16 05:17:14 mycroft Exp $ */
/* /*
@ -136,6 +136,19 @@ struct { \
(head)->slh_first = (head)->slh_first->field.sle_next; \ (head)->slh_first = (head)->slh_first->field.sle_next; \
} while (0) } while (0)
#define SLIST_REMOVE(head, elm, type, field) do { \
if ((head)->slh_first == (elm)) { \
SLIST_REMOVE_HEAD((head), field); \
} \
else { \
struct type *curelm = (head)->slh_first; \
while( curelm->field.sle_next != (elm) ) \
curelm = curelm->field.sle_next; \
curelm->field.sle_next = \
curelm->field.sle_next->field.sle_next; \
} \
} while (0)
/* /*
* List definitions. * List definitions.
*/ */

View File

@ -39,7 +39,7 @@
#ifndef HAVE_MKDTEMP #ifndef HAVE_MKDTEMP
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
static char rcsid[] = "$OpenBSD: mktemp.c,v 1.13 1998/06/30 23:03:13 deraadt Exp $"; static char rcsid[] = "$OpenBSD: mktemp.c,v 1.14 2002/01/02 20:18:32 deraadt Exp $";
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#ifdef HAVE_CYGWIN #ifdef HAVE_CYGWIN
@ -84,7 +84,8 @@ _gettemp(path, doopen, domkdir, slen)
{ {
register char *start, *trv, *suffp; register char *start, *trv, *suffp;
struct stat sbuf; struct stat sbuf;
int pid, rval; int rval;
pid_t pid;
if (doopen && domkdir) { if (doopen && domkdir) {
errno = EINVAL; errno = EINVAL;

View File

@ -1,3 +1,5 @@
/* $OpenBSD: readpassphrase.c,v 1.12 2001/12/15 05:41:00 millert Exp $ */
/* /*
* Copyright (c) 2000 Todd C. Miller <Todd.Miller@courtesan.com> * Copyright (c) 2000 Todd C. Miller <Todd.Miller@courtesan.com>
* All rights reserved. * All rights reserved.
@ -26,7 +28,7 @@
*/ */
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
static char rcsid[] = "$OpenBSD: readpassphrase.c,v 1.5 2001/06/27 13:23:30 djm Exp $"; static const char rcsid[] = "$OpenBSD: readpassphrase.c,v 1.12 2001/12/15 05:41:00 millert Exp $";
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#include "includes.h" #include "includes.h"
@ -47,20 +49,19 @@ static char rcsid[] = "$OpenBSD: readpassphrase.c,v 1.5 2001/06/27 13:23:30 djm
# define _POSIX_VDISABLE VDISABLE # define _POSIX_VDISABLE VDISABLE
#endif #endif
static volatile sig_atomic_t signo;
static void handler(int);
char * char *
readpassphrase(prompt, buf, bufsiz, flags) readpassphrase(const char *prompt, char *buf, size_t bufsiz, int flags)
const char *prompt;
char *buf;
size_t bufsiz;
int flags;
{ {
struct termios term; ssize_t nr;
int input, output, save_errno;
char ch, *p, *end; char ch, *p, *end;
#ifdef _POSIX_VDISABLE struct termios term, oterm;
u_char status; struct sigaction sa, saveint, savehup, savequit, saveterm;
#endif struct sigaction savetstp, savettin, savettou;
int echo, input, output;
sigset_t oset, nset;
/* I suppose we could alloc on demand in this case (XXX). */ /* I suppose we could alloc on demand in this case (XXX). */
if (bufsiz == 0) { if (bufsiz == 0) {
@ -68,6 +69,7 @@ readpassphrase(prompt, buf, bufsiz, flags)
return(NULL); return(NULL);
} }
restart:
/* /*
* Read and write to /dev/tty if available. If not, read from * Read and write to /dev/tty if available. If not, read from
* stdin and write to stderr unless a tty is required. * stdin and write to stderr unless a tty is required.
@ -82,44 +84,39 @@ readpassphrase(prompt, buf, bufsiz, flags)
} }
/* /*
* We block SIGINT and SIGTSTP so the terminal is not left * Catch signals that would otherwise cause the user to end
* in an inconsistent state (ie: no echo). It would probably * up with echo turned off in the shell. Don't worry about
* be better to simply catch these though. * things like SIGALRM and SIGPIPE for now.
*/ */
sigemptyset(&nset); sigemptyset(&sa.sa_mask);
sigaddset(&nset, SIGINT); sa.sa_flags = 0; /* don't restart system calls */
sigaddset(&nset, SIGTSTP); sa.sa_handler = handler;
(void)sigprocmask(SIG_BLOCK, &nset, &oset); (void)sigaction(SIGINT, &sa, &saveint);
(void)sigaction(SIGHUP, &sa, &savehup);
(void)sigaction(SIGQUIT, &sa, &savequit);
(void)sigaction(SIGTERM, &sa, &saveterm);
(void)sigaction(SIGTSTP, &sa, &savetstp);
(void)sigaction(SIGTTIN, &sa, &savettin);
(void)sigaction(SIGTTOU, &sa, &savettou);
/* Turn off echo if possible. */ /* Turn off echo if possible. */
echo = 0; if (tcgetattr(input, &oterm) == 0) {
#ifdef _POSIX_VDISABLE memcpy(&term, &oterm, sizeof(term));
status = _POSIX_VDISABLE; if (!(flags & RPP_ECHO_ON))
#endif term.c_lflag &= ~(ECHO | ECHONL);
if (tcgetattr(input, &term) == 0) {
if (!(flags & RPP_ECHO_ON) && (term.c_lflag & ECHO)) {
echo = 1;
term.c_lflag &= ~ECHO;
}
#ifdef VSTATUS #ifdef VSTATUS
if (term.c_cc[VSTATUS] != _POSIX_VDISABLE) { if (term.c_cc[VSTATUS] != _POSIX_VDISABLE)
status = term.c_cc[VSTATUS];
term.c_cc[VSTATUS] = _POSIX_VDISABLE; term.c_cc[VSTATUS] = _POSIX_VDISABLE;
}
#endif #endif
(void)tcsetattr(input, _T_FLUSH, &term); (void)tcsetattr(input, _T_FLUSH, &term);
} } else {
if (!(flags & RPP_ECHO_ON)) { memset(&term, 0, sizeof(term));
if (tcgetattr(input, &term) == 0 && (term.c_lflag & ECHO)) { memset(&oterm, 0, sizeof(oterm));
echo = 1;
term.c_lflag &= ~ECHO;
(void)tcsetattr(input, _T_FLUSH, &term);
}
} }
(void)write(output, prompt, strlen(prompt)); (void)write(output, prompt, strlen(prompt));
end = buf + bufsiz - 1; end = buf + bufsiz - 1;
for (p = buf; read(input, &ch, 1) == 1 && ch != '\n' && ch != '\r';) { for (p = buf; (nr = read(input, &ch, 1)) == 1 && ch != '\n' && ch != '\r';) {
if (p < end) { if (p < end) {
if ((flags & RPP_SEVENBIT)) if ((flags & RPP_SEVENBIT))
ch &= 0x7f; ch &= 0x7f;
@ -133,35 +130,55 @@ readpassphrase(prompt, buf, bufsiz, flags)
} }
} }
*p = '\0'; *p = '\0';
#ifdef _POSIX_VDISABLE save_errno = errno;
if (echo || status != _POSIX_VDISABLE) { if (!(term.c_lflag & ECHO))
#else (void)write(output, "\n", 1);
if (echo) {
#endif /* Restore old terminal settings and signals. */
if (echo) { if (memcmp(&term, &oterm, sizeof(term)) != 0)
(void)write(output, "\n", 1);
term.c_lflag |= ECHO;
}
#ifdef VSTATUS
if (status != _POSIX_VDISABLE)
term.c_cc[VSTATUS] = status;
#endif
(void)tcsetattr(input, _T_FLUSH, &term); (void)tcsetattr(input, _T_FLUSH, &term);
} (void)sigaction(SIGINT, &saveint, NULL);
(void)sigprocmask(SIG_SETMASK, &oset, NULL); (void)sigaction(SIGHUP, &savehup, NULL);
(void)sigaction(SIGQUIT, &savequit, NULL);
(void)sigaction(SIGTERM, &saveterm, NULL);
(void)sigaction(SIGTSTP, &savetstp, NULL);
(void)sigaction(SIGTTIN, &savettin, NULL);
(void)sigaction(SIGTTOU, &savettou, NULL);
if (input != STDIN_FILENO) if (input != STDIN_FILENO)
(void)close(input); (void)close(input);
return(buf);
/*
* If we were interrupted by a signal, resend it to ourselves
* now that we have restored the signal handlers.
*/
if (signo) {
kill(getpid(), signo);
switch (signo) {
case SIGTSTP:
case SIGTTIN:
case SIGTTOU:
signo = 0;
goto restart;
}
}
errno = save_errno;
return(nr == -1 ? NULL : buf);
} }
#endif /* HAVE_READPASSPHRASE */ #endif /* HAVE_READPASSPHRASE */
#if 0 #if 0
char * char *
getpass(prompt) getpass(const char *prompt)
const char *prompt;
{ {
static char buf[_PASSWORD_LEN + 1]; static char buf[_PASSWORD_LEN + 1];
return(readpassphrase(prompt, buf, sizeof(buf), RPP_ECHO_OFF)); return(readpassphrase(prompt, buf, sizeof(buf), RPP_ECHO_OFF));
} }
#endif #endif
static void handler(int s)
{
signo = s;
}

View File

@ -32,7 +32,7 @@
#if !defined(HAVE_REALPATH) || defined(BROKEN_REALPATH) #if !defined(HAVE_REALPATH) || defined(BROKEN_REALPATH)
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
static char *rcsid = "$OpenBSD: realpath.c,v 1.5 2001/06/27 00:58:56 lebel Exp $"; static char *rcsid = "$OpenBSD: realpath.c,v 1.6 2002/01/12 16:24:35 millert Exp $";
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#include <sys/param.h> #include <sys/param.h>
@ -74,6 +74,10 @@ realpath(const char *path, char *resolved)
} }
close(fd); close(fd);
/* Convert "." -> "" to optimize away a needless lstat() and chdir() */
if (path[0] == '.' && path[1] == '\0')
path = "";
/* /*
* Find the dirname and basename from the path to be resolved. * Find the dirname and basename from the path to be resolved.
* Change directory to the dirname component. * Change directory to the dirname component.
@ -102,7 +106,7 @@ loop:
p = resolved; p = resolved;
/* Deal with the last component. */ /* Deal with the last component. */
if (lstat(p, &sb) == 0) { if (*p != '\0' && lstat(p, &sb) == 0) {
if (S_ISLNK(sb.st_mode)) { if (S_ISLNK(sb.st_mode)) {
if (++symlinks > MAXSYMLINKS) { if (++symlinks > MAXSYMLINKS) {
serrno = ELOOP; serrno = ELOOP;

View File

@ -35,7 +35,7 @@
#ifndef HAVE_SETENV #ifndef HAVE_SETENV
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
static char *rcsid = "$OpenBSD: setenv.c,v 1.3 1998/02/02 22:44:53 millert Exp $"; static char *rcsid = "$OpenBSD: setenv.c,v 1.4 2001/07/09 06:57:45 deraadt Exp $";
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#include <stdlib.h> #include <stdlib.h>
@ -101,7 +101,8 @@ setenv(name, value, rewrite)
if (!rewrite) if (!rewrite)
return (0); return (0);
if (strlen(C) >= l_value) { /* old larger; copy over */ if (strlen(C) >= l_value) { /* old larger; copy over */
while ((*C++ = *value++)); while ((*C++ = *value++))
;
return (0); return (0);
} }
} else { /* create new slot */ } else { /* create new slot */

View File

@ -35,7 +35,7 @@
*/ */
#if defined(LIBC_SCCS) && !defined(lint) #if defined(LIBC_SCCS) && !defined(lint)
static char rcsid[] = "$OpenBSD: setproctitle.c,v 1.7 1999/02/25 22:10:12 art Exp $"; static char rcsid[] = "$OpenBSD: setproctitle.c,v 1.8 2001/11/06 19:21:40 art Exp $";
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#include "includes.h" #include "includes.h"