]> andersk Git - gssapi-openssh.git/blame - openssh/sftp-glob.c
Removed in OpenSSH 5.1p1.
[gssapi-openssh.git] / openssh / sftp-glob.c
CommitLineData
9108f8d9 1/* $OpenBSD: sftp-glob.c,v 1.22 2006/08/03 03:34:42 deraadt Exp $ */
3c0ef626 2/*
cdd66111 3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
3c0ef626 4 *
cdd66111 5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
3c0ef626 8 *
cdd66111 9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3c0ef626 16 */
17
18#include "includes.h"
3c0ef626 19
9108f8d9 20#include <sys/types.h>
21#ifdef HAVE_SYS_STAT_H
22# include <sys/stat.h>
23#endif
24
25#include <dirent.h>
26#include <string.h>
3c0ef626 27
9108f8d9 28#include "xmalloc.h"
3c0ef626 29#include "sftp.h"
9108f8d9 30#include "buffer.h"
3c0ef626 31#include "sftp-common.h"
32#include "sftp-client.h"
cdd66111 33
34int remote_glob(struct sftp_conn *, const char *, int,
35 int (*)(const char *, int), glob_t *);
3c0ef626 36
37struct SFTP_OPENDIR {
38 SFTP_DIRENT **dir;
39 int offset;
40};
41
42static struct {
e9a17296 43 struct sftp_conn *conn;
3c0ef626 44} cur;
45
46static void *
47fudge_opendir(const char *path)
48{
49 struct SFTP_OPENDIR *r;
e9a17296 50
3c0ef626 51 r = xmalloc(sizeof(*r));
e9a17296 52
41b2f314 53 if (do_readdir(cur.conn, (char *)path, &r->dir)) {
54 xfree(r);
3c0ef626 55 return(NULL);
41b2f314 56 }
3c0ef626 57
58 r->offset = 0;
59
41b2f314 60 return((void *)r);
3c0ef626 61}
62
63static struct dirent *
64fudge_readdir(struct SFTP_OPENDIR *od)
65{
66 /* Solaris needs sizeof(dirent) + path length (see below) */
67 static char buf[sizeof(struct dirent) + MAXPATHLEN];
68 struct dirent *ret = (struct dirent *)buf;
69#ifdef __GNU_LIBRARY__
70 static int inum = 1;
71#endif /* __GNU_LIBRARY__ */
cdd66111 72
3c0ef626 73 if (od->dir[od->offset] == NULL)
74 return(NULL);
75
76 memset(buf, 0, sizeof(buf));
77
78 /*
79 * Solaris defines dirent->d_name as a one byte array and expects
80 * you to hack around it.
81 */
82#ifdef BROKEN_ONE_BYTE_DIRENT_D_NAME
83 strlcpy(ret->d_name, od->dir[od->offset++]->filename, MAXPATHLEN);
84#else
85 strlcpy(ret->d_name, od->dir[od->offset++]->filename,
86 sizeof(ret->d_name));
87#endif
88#ifdef __GNU_LIBRARY__
89 /*
90 * Idiot glibc uses extensions to struct dirent for readdir with
cdd66111 91 * ALTDIRFUNCs. Not that this is documented anywhere but the
3c0ef626 92 * source... Fake an inode number to appease it.
93 */
94 ret->d_ino = inum++;
95 if (!inum)
96 inum = 1;
97#endif /* __GNU_LIBRARY__ */
98
99 return(ret);
100}
101
102static void
103fudge_closedir(struct SFTP_OPENDIR *od)
104{
105 free_sftp_dirents(od->dir);
106 xfree(od);
107}
108
3c0ef626 109static int
110fudge_lstat(const char *path, struct stat *st)
111{
112 Attrib *a;
e9a17296 113
41b2f314 114 if (!(a = do_lstat(cur.conn, (char *)path, 0)))
3c0ef626 115 return(-1);
e9a17296 116
3c0ef626 117 attrib_to_stat(a, st);
e9a17296 118
3c0ef626 119 return(0);
120}
121
122static int
123fudge_stat(const char *path, struct stat *st)
124{
125 Attrib *a;
e9a17296 126
41b2f314 127 if (!(a = do_stat(cur.conn, (char *)path, 0)))
3c0ef626 128 return(-1);
e9a17296 129
3c0ef626 130 attrib_to_stat(a, st);
e9a17296 131
3c0ef626 132 return(0);
133}
134
135int
e9a17296 136remote_glob(struct sftp_conn *conn, const char *pattern, int flags,
3c0ef626 137 int (*errfunc)(const char *, int), glob_t *pglob)
138{
139 pglob->gl_opendir = fudge_opendir;
140 pglob->gl_readdir = (struct dirent *(*)(void *))fudge_readdir;
141 pglob->gl_closedir = (void (*)(void *))fudge_closedir;
142 pglob->gl_lstat = fudge_lstat;
143 pglob->gl_stat = fudge_stat;
e9a17296 144
3c0ef626 145 memset(&cur, 0, sizeof(cur));
e9a17296 146 cur.conn = conn;
3c0ef626 147
e9a17296 148 return(glob(pattern, flags | GLOB_ALTDIRFUNC, errfunc, pglob));
3c0ef626 149}
This page took 0.167228 seconds and 5 git commands to generate.