blob: b5be7dede6f66edde81f81b642e1de9b5e3c0146 [file] [log] [blame]
Damien Miller4870afd2001-03-14 10:27:09 +11001/*
2 * Copyright (c) 2001 Damien Miller. All rights reserved.
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"
Damien Millerea12acf2001-07-14 12:14:56 +100026RCSID("$OpenBSD: sftp-glob.c,v 1.7 2001/07/05 11:43:33 espie Exp $");
Damien Miller4870afd2001-03-14 10:27:09 +110027
Damien Miller4870afd2001-03-14 10:27:09 +110028#include "ssh.h"
29#include "buffer.h"
30#include "bufaux.h"
31#include "getput.h"
32#include "xmalloc.h"
33#include "log.h"
34#include "atomicio.h"
35#include "pathnames.h"
36
37#include "sftp.h"
38#include "sftp-common.h"
39#include "sftp-client.h"
40#include "sftp-glob.h"
41
42struct SFTP_OPENDIR {
43 SFTP_DIRENT **dir;
44 int offset;
45};
46
47static struct {
48 int fd_in;
49 int fd_out;
50} cur;
51
Ben Lindstrombba81212001-06-25 05:01:22 +000052static void *
53fudge_opendir(const char *path)
Damien Miller4870afd2001-03-14 10:27:09 +110054{
55 struct SFTP_OPENDIR *r;
56
57 r = xmalloc(sizeof(*r));
58
59 if (do_readdir(cur.fd_in, cur.fd_out, (char*)path, &r->dir))
60 return(NULL);
61
62 r->offset = 0;
63
64 return((void*)r);
65}
66
Ben Lindstrombba81212001-06-25 05:01:22 +000067static struct dirent *
68fudge_readdir(struct SFTP_OPENDIR *od)
Damien Miller4870afd2001-03-14 10:27:09 +110069{
Damien Miller18bb4732001-03-28 14:35:30 +100070 /* Solaris needs sizeof(dirent) + path length (see below) */
71 static char buf[sizeof(struct dirent) + MAXPATHLEN];
72 struct dirent *ret = (struct dirent *)buf;
Damien Miller4870afd2001-03-14 10:27:09 +110073#ifdef __GNU_LIBRARY__
74 static int inum = 1;
75#endif /* __GNU_LIBRARY__ */
76
77 if (od->dir[od->offset] == NULL)
78 return(NULL);
79
Damien Miller18bb4732001-03-28 14:35:30 +100080 memset(buf, 0, sizeof(buf));
Damien Miller4870afd2001-03-14 10:27:09 +110081
Damien Miller18bb4732001-03-28 14:35:30 +100082 /*
83 * Solaris defines dirent->d_name as a one byte array and expects
84 * you to hack around it.
85 */
86#ifdef BROKEN_ONE_BYTE_DIRENT_D_NAME
87 strlcpy(ret->d_name, od->dir[od->offset++]->filename, MAXPATHLEN);
88#else
Ben Lindstroma3700052001-04-05 23:26:32 +000089 strlcpy(ret->d_name, od->dir[od->offset++]->filename,
Damien Miller18bb4732001-03-28 14:35:30 +100090 sizeof(ret->d_name));
91#endif
Damien Miller4870afd2001-03-14 10:27:09 +110092#ifdef __GNU_LIBRARY__
93 /*
94 * Idiot glibc uses extensions to struct dirent for readdir with
95 * ALTDIRFUNCs. Not that this is documented anywhere but the
96 * source... Fake an inode number to appease it.
97 */
Damien Miller18bb4732001-03-28 14:35:30 +100098 ret->d_ino = inum++;
Damien Miller4870afd2001-03-14 10:27:09 +110099 if (!inum)
100 inum = 1;
101#endif /* __GNU_LIBRARY__ */
102
Damien Miller18bb4732001-03-28 14:35:30 +1000103 return(ret);
Damien Miller4870afd2001-03-14 10:27:09 +1100104}
105
Ben Lindstrombba81212001-06-25 05:01:22 +0000106static void
107fudge_closedir(struct SFTP_OPENDIR *od)
Damien Miller4870afd2001-03-14 10:27:09 +1100108{
109 free_sftp_dirents(od->dir);
Ben Lindstrom86ebcb62001-04-04 01:53:20 +0000110 xfree(od);
Damien Miller4870afd2001-03-14 10:27:09 +1100111}
112
Ben Lindstrombba81212001-06-25 05:01:22 +0000113static void
114attrib_to_stat(Attrib *a, struct stat *st)
Damien Miller4870afd2001-03-14 10:27:09 +1100115{
116 memset(st, 0, sizeof(*st));
117
118 if (a->flags & SSH2_FILEXFER_ATTR_SIZE)
119 st->st_size = a->size;
120 if (a->flags & SSH2_FILEXFER_ATTR_UIDGID) {
121 st->st_uid = a->uid;
122 st->st_gid = a->gid;
123 }
124 if (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS)
125 st->st_mode = a->perm;
126 if (a->flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
127 st->st_atime = a->atime;
128 st->st_mtime = a->mtime;
129 }
130}
131
Ben Lindstrombba81212001-06-25 05:01:22 +0000132static int
133fudge_lstat(const char *path, struct stat *st)
Damien Miller4870afd2001-03-14 10:27:09 +1100134{
135 Attrib *a;
136
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000137 if (!(a = do_lstat(cur.fd_in, cur.fd_out, (char*)path, 0)))
Damien Miller4870afd2001-03-14 10:27:09 +1100138 return(-1);
139
140 attrib_to_stat(a, st);
141
142 return(0);
143}
144
Ben Lindstrombba81212001-06-25 05:01:22 +0000145static int
146fudge_stat(const char *path, struct stat *st)
Damien Miller4870afd2001-03-14 10:27:09 +1100147{
148 Attrib *a;
149
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000150 if (!(a = do_stat(cur.fd_in, cur.fd_out, (char*)path, 0)))
Damien Miller4870afd2001-03-14 10:27:09 +1100151 return(-1);
152
153 attrib_to_stat(a, st);
154
155 return(0);
156}
157
158int
Ben Lindstroma3700052001-04-05 23:26:32 +0000159remote_glob(int fd_in, int fd_out, const char *pattern, int flags,
Ben Lindstrom206941f2001-04-15 14:27:16 +0000160 int (*errfunc)(const char *, int), glob_t *pglob)
Damien Miller4870afd2001-03-14 10:27:09 +1100161{
Damien Millerea12acf2001-07-14 12:14:56 +1000162 pglob->gl_opendir = fudge_opendir;
163 pglob->gl_readdir = (struct dirent *(*)(void *))fudge_readdir;
164 pglob->gl_closedir = (void (*)(void *))fudge_closedir;
Damien Miller4870afd2001-03-14 10:27:09 +1100165 pglob->gl_lstat = fudge_lstat;
166 pglob->gl_stat = fudge_stat;
167
168 memset(&cur, 0, sizeof(cur));
169 cur.fd_in = fd_in;
170 cur.fd_out = fd_out;
171
Damien Millerea12acf2001-07-14 12:14:56 +1000172 return(glob(pattern, flags | GLOB_ALTDIRFUNC, errfunc,
Damien Miller4870afd2001-03-14 10:27:09 +1100173 pglob));
174}