- dtucker@cvs.openbsd.org 2006/07/21 12:43:36
[openssh-git.git] / sftp-glob.c
blob0342de47d4e5a9ad4b403c22e443482d407d194a
1 /* $OpenBSD: sftp-glob.c,v 1.20 2006/07/10 16:01:57 stevesk Exp $ */
2 /*
3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
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.
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.
18 #include "includes.h"
20 #include <sys/types.h>
21 #ifdef HAVE_SYS_STAT_H
22 # include <sys/stat.h>
23 #endif
25 #include <dirent.h>
27 #include "xmalloc.h"
29 #include "sftp.h"
30 #include "sftp-common.h"
31 #include "sftp-client.h"
33 int remote_glob(struct sftp_conn *, const char *, int,
34 int (*)(const char *, int), glob_t *);
36 struct SFTP_OPENDIR {
37 SFTP_DIRENT **dir;
38 int offset;
41 static struct {
42 struct sftp_conn *conn;
43 } cur;
45 static void *
46 fudge_opendir(const char *path)
48 struct SFTP_OPENDIR *r;
50 r = xmalloc(sizeof(*r));
52 if (do_readdir(cur.conn, (char *)path, &r->dir)) {
53 xfree(r);
54 return(NULL);
57 r->offset = 0;
59 return((void *)r);
62 static struct dirent *
63 fudge_readdir(struct SFTP_OPENDIR *od)
65 /* Solaris needs sizeof(dirent) + path length (see below) */
66 static char buf[sizeof(struct dirent) + MAXPATHLEN];
67 struct dirent *ret = (struct dirent *)buf;
68 #ifdef __GNU_LIBRARY__
69 static int inum = 1;
70 #endif /* __GNU_LIBRARY__ */
72 if (od->dir[od->offset] == NULL)
73 return(NULL);
75 memset(buf, 0, sizeof(buf));
78 * Solaris defines dirent->d_name as a one byte array and expects
79 * you to hack around it.
81 #ifdef BROKEN_ONE_BYTE_DIRENT_D_NAME
82 strlcpy(ret->d_name, od->dir[od->offset++]->filename, MAXPATHLEN);
83 #else
84 strlcpy(ret->d_name, od->dir[od->offset++]->filename,
85 sizeof(ret->d_name));
86 #endif
87 #ifdef __GNU_LIBRARY__
89 * Idiot glibc uses extensions to struct dirent for readdir with
90 * ALTDIRFUNCs. Not that this is documented anywhere but the
91 * source... Fake an inode number to appease it.
93 ret->d_ino = inum++;
94 if (!inum)
95 inum = 1;
96 #endif /* __GNU_LIBRARY__ */
98 return(ret);
101 static void
102 fudge_closedir(struct SFTP_OPENDIR *od)
104 free_sftp_dirents(od->dir);
105 xfree(od);
108 static int
109 fudge_lstat(const char *path, struct stat *st)
111 Attrib *a;
113 if (!(a = do_lstat(cur.conn, (char *)path, 0)))
114 return(-1);
116 attrib_to_stat(a, st);
118 return(0);
121 static int
122 fudge_stat(const char *path, struct stat *st)
124 Attrib *a;
126 if (!(a = do_stat(cur.conn, (char *)path, 0)))
127 return(-1);
129 attrib_to_stat(a, st);
131 return(0);
135 remote_glob(struct sftp_conn *conn, const char *pattern, int flags,
136 int (*errfunc)(const char *, int), glob_t *pglob)
138 pglob->gl_opendir = fudge_opendir;
139 pglob->gl_readdir = (struct dirent *(*)(void *))fudge_readdir;
140 pglob->gl_closedir = (void (*)(void *))fudge_closedir;
141 pglob->gl_lstat = fudge_lstat;
142 pglob->gl_stat = fudge_stat;
144 memset(&cur, 0, sizeof(cur));
145 cur.conn = conn;
147 return(glob(pattern, flags | GLOB_ALTDIRFUNC, errfunc, pglob));