blob: 9dfbf953843834d7296443d17b714000ca382c9b [file] [log] [blame]
Damien Miller4870afd2001-03-14 10:27:09 +11001/*
Damien Miller4e60ed72004-02-17 17:07:59 +11002 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
Damien Miller4870afd2001-03-14 10:27:09 +11003 *
Damien Miller4e60ed72004-02-17 17:07:59 +11004 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
Damien Miller4870afd2001-03-14 10:27:09 +11007 *
Damien Miller4e60ed72004-02-17 17:07:59 +11008 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Damien Miller4870afd2001-03-14 10:27:09 +110015 */
16
17#include "includes.h"
Damien Miller88f254b2006-03-15 11:25:13 +110018RCSID("$OpenBSD: sftp-glob.c,v 1.16 2006/02/08 23:51:24 stevesk Exp $");
19
20#include <dirent.h>
Damien Miller4870afd2001-03-14 10:27:09 +110021
Damien Miller4870afd2001-03-14 10:27:09 +110022#include "buffer.h"
23#include "bufaux.h"
Damien Miller4870afd2001-03-14 10:27:09 +110024#include "xmalloc.h"
25#include "log.h"
Damien Miller4870afd2001-03-14 10:27:09 +110026
27#include "sftp.h"
28#include "sftp-common.h"
29#include "sftp-client.h"
Damien Millerd7d46bb2004-02-18 14:11:13 +110030
31int remote_glob(struct sftp_conn *, const char *, int,
32 int (*)(const char *, int), glob_t *);
Damien Miller4870afd2001-03-14 10:27:09 +110033
34struct SFTP_OPENDIR {
35 SFTP_DIRENT **dir;
36 int offset;
37};
38
39static struct {
Damien Miller3db5f532002-02-13 14:10:32 +110040 struct sftp_conn *conn;
Damien Miller4870afd2001-03-14 10:27:09 +110041} cur;
42
Ben Lindstrombba81212001-06-25 05:01:22 +000043static void *
44fudge_opendir(const char *path)
Damien Miller4870afd2001-03-14 10:27:09 +110045{
46 struct SFTP_OPENDIR *r;
Damien Miller9f0f5c62001-12-21 14:45:46 +110047
Damien Miller4870afd2001-03-14 10:27:09 +110048 r = xmalloc(sizeof(*r));
Damien Miller9f0f5c62001-12-21 14:45:46 +110049
Ben Lindstromc51b9242002-07-07 22:10:15 +000050 if (do_readdir(cur.conn, (char *)path, &r->dir)) {
51 xfree(r);
Damien Miller4870afd2001-03-14 10:27:09 +110052 return(NULL);
Ben Lindstromc51b9242002-07-07 22:10:15 +000053 }
Damien Miller4870afd2001-03-14 10:27:09 +110054
55 r->offset = 0;
56
Ben Lindstroma962c2f2002-07-04 00:14:17 +000057 return((void *)r);
Damien Miller4870afd2001-03-14 10:27:09 +110058}
59
Ben Lindstrombba81212001-06-25 05:01:22 +000060static struct dirent *
61fudge_readdir(struct SFTP_OPENDIR *od)
Damien Miller4870afd2001-03-14 10:27:09 +110062{
Damien Miller18bb4732001-03-28 14:35:30 +100063 /* Solaris needs sizeof(dirent) + path length (see below) */
64 static char buf[sizeof(struct dirent) + MAXPATHLEN];
65 struct dirent *ret = (struct dirent *)buf;
Damien Miller4870afd2001-03-14 10:27:09 +110066#ifdef __GNU_LIBRARY__
67 static int inum = 1;
68#endif /* __GNU_LIBRARY__ */
Damien Miller787b2ec2003-11-21 23:56:47 +110069
Damien Miller4870afd2001-03-14 10:27:09 +110070 if (od->dir[od->offset] == NULL)
71 return(NULL);
72
Damien Miller18bb4732001-03-28 14:35:30 +100073 memset(buf, 0, sizeof(buf));
Damien Miller4870afd2001-03-14 10:27:09 +110074
Damien Miller18bb4732001-03-28 14:35:30 +100075 /*
76 * Solaris defines dirent->d_name as a one byte array and expects
77 * you to hack around it.
78 */
79#ifdef BROKEN_ONE_BYTE_DIRENT_D_NAME
80 strlcpy(ret->d_name, od->dir[od->offset++]->filename, MAXPATHLEN);
81#else
Ben Lindstroma3700052001-04-05 23:26:32 +000082 strlcpy(ret->d_name, od->dir[od->offset++]->filename,
Damien Miller18bb4732001-03-28 14:35:30 +100083 sizeof(ret->d_name));
84#endif
Damien Miller4870afd2001-03-14 10:27:09 +110085#ifdef __GNU_LIBRARY__
86 /*
87 * Idiot glibc uses extensions to struct dirent for readdir with
Damien Millera8e06ce2003-11-21 23:48:55 +110088 * ALTDIRFUNCs. Not that this is documented anywhere but the
Damien Miller4870afd2001-03-14 10:27:09 +110089 * source... Fake an inode number to appease it.
90 */
Damien Miller18bb4732001-03-28 14:35:30 +100091 ret->d_ino = inum++;
Damien Miller4870afd2001-03-14 10:27:09 +110092 if (!inum)
93 inum = 1;
94#endif /* __GNU_LIBRARY__ */
95
Damien Miller18bb4732001-03-28 14:35:30 +100096 return(ret);
Damien Miller4870afd2001-03-14 10:27:09 +110097}
98
Ben Lindstrombba81212001-06-25 05:01:22 +000099static void
100fudge_closedir(struct SFTP_OPENDIR *od)
Damien Miller4870afd2001-03-14 10:27:09 +1100101{
102 free_sftp_dirents(od->dir);
Ben Lindstrom86ebcb62001-04-04 01:53:20 +0000103 xfree(od);
Damien Miller4870afd2001-03-14 10:27:09 +1100104}
105
Ben Lindstrombba81212001-06-25 05:01:22 +0000106static int
107fudge_lstat(const char *path, struct stat *st)
Damien Miller4870afd2001-03-14 10:27:09 +1100108{
109 Attrib *a;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100110
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000111 if (!(a = do_lstat(cur.conn, (char *)path, 0)))
Damien Miller4870afd2001-03-14 10:27:09 +1100112 return(-1);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100113
Damien Miller4870afd2001-03-14 10:27:09 +1100114 attrib_to_stat(a, st);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100115
Damien Miller4870afd2001-03-14 10:27:09 +1100116 return(0);
117}
118
Ben Lindstrombba81212001-06-25 05:01:22 +0000119static int
120fudge_stat(const char *path, struct stat *st)
Damien Miller4870afd2001-03-14 10:27:09 +1100121{
122 Attrib *a;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100123
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000124 if (!(a = do_stat(cur.conn, (char *)path, 0)))
Damien Miller4870afd2001-03-14 10:27:09 +1100125 return(-1);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100126
Damien Miller4870afd2001-03-14 10:27:09 +1100127 attrib_to_stat(a, st);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100128
Damien Miller4870afd2001-03-14 10:27:09 +1100129 return(0);
130}
131
132int
Damien Miller3db5f532002-02-13 14:10:32 +1100133remote_glob(struct sftp_conn *conn, const char *pattern, int flags,
Ben Lindstrom206941f2001-04-15 14:27:16 +0000134 int (*errfunc)(const char *, int), glob_t *pglob)
Damien Miller4870afd2001-03-14 10:27:09 +1100135{
Damien Millerea12acf2001-07-14 12:14:56 +1000136 pglob->gl_opendir = fudge_opendir;
137 pglob->gl_readdir = (struct dirent *(*)(void *))fudge_readdir;
138 pglob->gl_closedir = (void (*)(void *))fudge_closedir;
Damien Miller4870afd2001-03-14 10:27:09 +1100139 pglob->gl_lstat = fudge_lstat;
140 pglob->gl_stat = fudge_stat;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100141
Damien Miller4870afd2001-03-14 10:27:09 +1100142 memset(&cur, 0, sizeof(cur));
Damien Miller3db5f532002-02-13 14:10:32 +1100143 cur.conn = conn;
Damien Miller4870afd2001-03-14 10:27:09 +1100144
Damien Miller3db5f532002-02-13 14:10:32 +1100145 return(glob(pattern, flags | GLOB_ALTDIRFUNC, errfunc, pglob));
Damien Miller4870afd2001-03-14 10:27:09 +1100146}