]> andersk Git - openssh.git/blame - sftp-glob.c
- stevesk@cvs.openbsd.org 2002/06/20 20:03:34
[openssh.git] / sftp-glob.c
CommitLineData
2e4fb373 1/*
22e6c827 2 * Copyright (c) 2001,2002 Damien Miller. All rights reserved.
2e4fb373 3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
25#include "includes.h"
22e6c827 26RCSID("$OpenBSD: sftp-glob.c,v 1.10 2002/02/13 00:59:23 djm Exp $");
2e4fb373 27
2e4fb373 28#include "buffer.h"
29#include "bufaux.h"
2e4fb373 30#include "xmalloc.h"
31#include "log.h"
2e4fb373 32
33#include "sftp.h"
34#include "sftp-common.h"
35#include "sftp-client.h"
36#include "sftp-glob.h"
37
38struct SFTP_OPENDIR {
39 SFTP_DIRENT **dir;
40 int offset;
41};
42
43static struct {
22e6c827 44 struct sftp_conn *conn;
2e4fb373 45} cur;
46
396c147e 47static void *
48fudge_opendir(const char *path)
2e4fb373 49{
50 struct SFTP_OPENDIR *r;
184eed6a 51
2e4fb373 52 r = xmalloc(sizeof(*r));
184eed6a 53
22e6c827 54 if (do_readdir(cur.conn, (char*)path, &r->dir))
2e4fb373 55 return(NULL);
56
57 r->offset = 0;
58
59 return((void*)r);
60}
61
396c147e 62static struct dirent *
63fudge_readdir(struct SFTP_OPENDIR *od)
2e4fb373 64{
edbe6722 65 /* Solaris needs sizeof(dirent) + path length (see below) */
66 static char buf[sizeof(struct dirent) + MAXPATHLEN];
67 struct dirent *ret = (struct dirent *)buf;
2e4fb373 68#ifdef __GNU_LIBRARY__
69 static int inum = 1;
70#endif /* __GNU_LIBRARY__ */
71
72 if (od->dir[od->offset] == NULL)
73 return(NULL);
74
edbe6722 75 memset(buf, 0, sizeof(buf));
2e4fb373 76
edbe6722 77 /*
78 * Solaris defines dirent->d_name as a one byte array and expects
79 * you to hack around it.
80 */
81#ifdef BROKEN_ONE_BYTE_DIRENT_D_NAME
82 strlcpy(ret->d_name, od->dir[od->offset++]->filename, MAXPATHLEN);
83#else
cd332296 84 strlcpy(ret->d_name, od->dir[od->offset++]->filename,
edbe6722 85 sizeof(ret->d_name));
86#endif
2e4fb373 87#ifdef __GNU_LIBRARY__
88 /*
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.
92 */
edbe6722 93 ret->d_ino = inum++;
2e4fb373 94 if (!inum)
95 inum = 1;
96#endif /* __GNU_LIBRARY__ */
97
edbe6722 98 return(ret);
2e4fb373 99}
100
396c147e 101static void
102fudge_closedir(struct SFTP_OPENDIR *od)
2e4fb373 103{
104 free_sftp_dirents(od->dir);
894c5fa6 105 xfree(od);
2e4fb373 106}
107
396c147e 108static void
109attrib_to_stat(Attrib *a, struct stat *st)
2e4fb373 110{
111 memset(st, 0, sizeof(*st));
184eed6a 112
2e4fb373 113 if (a->flags & SSH2_FILEXFER_ATTR_SIZE)
114 st->st_size = a->size;
115 if (a->flags & SSH2_FILEXFER_ATTR_UIDGID) {
116 st->st_uid = a->uid;
117 st->st_gid = a->gid;
118 }
119 if (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS)
120 st->st_mode = a->perm;
121 if (a->flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
122 st->st_atime = a->atime;
123 st->st_mtime = a->mtime;
124 }
125}
126
396c147e 127static int
128fudge_lstat(const char *path, struct stat *st)
2e4fb373 129{
130 Attrib *a;
184eed6a 131
22e6c827 132 if (!(a = do_lstat(cur.conn, (char*)path, 0)))
2e4fb373 133 return(-1);
184eed6a 134
2e4fb373 135 attrib_to_stat(a, st);
184eed6a 136
2e4fb373 137 return(0);
138}
139
396c147e 140static int
141fudge_stat(const char *path, struct stat *st)
2e4fb373 142{
143 Attrib *a;
184eed6a 144
22e6c827 145 if (!(a = do_stat(cur.conn, (char*)path, 0)))
2e4fb373 146 return(-1);
184eed6a 147
2e4fb373 148 attrib_to_stat(a, st);
184eed6a 149
2e4fb373 150 return(0);
151}
152
153int
22e6c827 154remote_glob(struct sftp_conn *conn, const char *pattern, int flags,
ec1f12d3 155 int (*errfunc)(const char *, int), glob_t *pglob)
2e4fb373 156{
29009047 157 pglob->gl_opendir = fudge_opendir;
158 pglob->gl_readdir = (struct dirent *(*)(void *))fudge_readdir;
159 pglob->gl_closedir = (void (*)(void *))fudge_closedir;
2e4fb373 160 pglob->gl_lstat = fudge_lstat;
161 pglob->gl_stat = fudge_stat;
184eed6a 162
2e4fb373 163 memset(&cur, 0, sizeof(cur));
22e6c827 164 cur.conn = conn;
2e4fb373 165
22e6c827 166 return(glob(pattern, flags | GLOB_ALTDIRFUNC, errfunc, pglob));
2e4fb373 167}
This page took 0.12753 seconds and 5 git commands to generate.