blob: f47367f10d60ecdf41da9085c8f701b070e6887d [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 Miller4e60ed72004-02-17 17:07:59 +110018RCSID("$OpenBSD: sftp-glob.c,v 1.14 2004/02/17 05:39:51 djm Exp $");
Damien Miller4870afd2001-03-14 10:27:09 +110019
Damien Miller4870afd2001-03-14 10:27:09 +110020#include "buffer.h"
21#include "bufaux.h"
Damien Miller4870afd2001-03-14 10:27:09 +110022#include "xmalloc.h"
23#include "log.h"
Damien Miller4870afd2001-03-14 10:27:09 +110024
25#include "sftp.h"
26#include "sftp-common.h"
27#include "sftp-client.h"
28#include "sftp-glob.h"
29
30struct SFTP_OPENDIR {
31 SFTP_DIRENT **dir;
32 int offset;
33};
34
35static struct {
Damien Miller3db5f532002-02-13 14:10:32 +110036 struct sftp_conn *conn;
Damien Miller4870afd2001-03-14 10:27:09 +110037} cur;
38
Ben Lindstrombba81212001-06-25 05:01:22 +000039static void *
40fudge_opendir(const char *path)
Damien Miller4870afd2001-03-14 10:27:09 +110041{
42 struct SFTP_OPENDIR *r;
Damien Miller9f0f5c62001-12-21 14:45:46 +110043
Damien Miller4870afd2001-03-14 10:27:09 +110044 r = xmalloc(sizeof(*r));
Damien Miller9f0f5c62001-12-21 14:45:46 +110045
Ben Lindstromc51b9242002-07-07 22:10:15 +000046 if (do_readdir(cur.conn, (char *)path, &r->dir)) {
47 xfree(r);
Damien Miller4870afd2001-03-14 10:27:09 +110048 return(NULL);
Ben Lindstromc51b9242002-07-07 22:10:15 +000049 }
Damien Miller4870afd2001-03-14 10:27:09 +110050
51 r->offset = 0;
52
Ben Lindstroma962c2f2002-07-04 00:14:17 +000053 return((void *)r);
Damien Miller4870afd2001-03-14 10:27:09 +110054}
55
Ben Lindstrombba81212001-06-25 05:01:22 +000056static struct dirent *
57fudge_readdir(struct SFTP_OPENDIR *od)
Damien Miller4870afd2001-03-14 10:27:09 +110058{
Damien Miller18bb4732001-03-28 14:35:30 +100059 /* Solaris needs sizeof(dirent) + path length (see below) */
60 static char buf[sizeof(struct dirent) + MAXPATHLEN];
61 struct dirent *ret = (struct dirent *)buf;
Damien Miller4870afd2001-03-14 10:27:09 +110062#ifdef __GNU_LIBRARY__
63 static int inum = 1;
64#endif /* __GNU_LIBRARY__ */
Damien Miller787b2ec2003-11-21 23:56:47 +110065
Damien Miller4870afd2001-03-14 10:27:09 +110066 if (od->dir[od->offset] == NULL)
67 return(NULL);
68
Damien Miller18bb4732001-03-28 14:35:30 +100069 memset(buf, 0, sizeof(buf));
Damien Miller4870afd2001-03-14 10:27:09 +110070
Damien Miller18bb4732001-03-28 14:35:30 +100071 /*
72 * Solaris defines dirent->d_name as a one byte array and expects
73 * you to hack around it.
74 */
75#ifdef BROKEN_ONE_BYTE_DIRENT_D_NAME
76 strlcpy(ret->d_name, od->dir[od->offset++]->filename, MAXPATHLEN);
77#else
Ben Lindstroma3700052001-04-05 23:26:32 +000078 strlcpy(ret->d_name, od->dir[od->offset++]->filename,
Damien Miller18bb4732001-03-28 14:35:30 +100079 sizeof(ret->d_name));
80#endif
Damien Miller4870afd2001-03-14 10:27:09 +110081#ifdef __GNU_LIBRARY__
82 /*
83 * Idiot glibc uses extensions to struct dirent for readdir with
Damien Millera8e06ce2003-11-21 23:48:55 +110084 * ALTDIRFUNCs. Not that this is documented anywhere but the
Damien Miller4870afd2001-03-14 10:27:09 +110085 * source... Fake an inode number to appease it.
86 */
Damien Miller18bb4732001-03-28 14:35:30 +100087 ret->d_ino = inum++;
Damien Miller4870afd2001-03-14 10:27:09 +110088 if (!inum)
89 inum = 1;
90#endif /* __GNU_LIBRARY__ */
91
Damien Miller18bb4732001-03-28 14:35:30 +100092 return(ret);
Damien Miller4870afd2001-03-14 10:27:09 +110093}
94
Ben Lindstrombba81212001-06-25 05:01:22 +000095static void
96fudge_closedir(struct SFTP_OPENDIR *od)
Damien Miller4870afd2001-03-14 10:27:09 +110097{
98 free_sftp_dirents(od->dir);
Ben Lindstrom86ebcb62001-04-04 01:53:20 +000099 xfree(od);
Damien Miller4870afd2001-03-14 10:27:09 +1100100}
101
Ben Lindstrombba81212001-06-25 05:01:22 +0000102static int
103fudge_lstat(const char *path, struct stat *st)
Damien Miller4870afd2001-03-14 10:27:09 +1100104{
105 Attrib *a;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100106
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000107 if (!(a = do_lstat(cur.conn, (char *)path, 0)))
Damien Miller4870afd2001-03-14 10:27:09 +1100108 return(-1);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100109
Damien Miller4870afd2001-03-14 10:27:09 +1100110 attrib_to_stat(a, st);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100111
Damien Miller4870afd2001-03-14 10:27:09 +1100112 return(0);
113}
114
Ben Lindstrombba81212001-06-25 05:01:22 +0000115static int
116fudge_stat(const char *path, struct stat *st)
Damien Miller4870afd2001-03-14 10:27:09 +1100117{
118 Attrib *a;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100119
Ben Lindstroma962c2f2002-07-04 00:14:17 +0000120 if (!(a = do_stat(cur.conn, (char *)path, 0)))
Damien Miller4870afd2001-03-14 10:27:09 +1100121 return(-1);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100122
Damien Miller4870afd2001-03-14 10:27:09 +1100123 attrib_to_stat(a, st);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100124
Damien Miller4870afd2001-03-14 10:27:09 +1100125 return(0);
126}
127
128int
Damien Miller3db5f532002-02-13 14:10:32 +1100129remote_glob(struct sftp_conn *conn, const char *pattern, int flags,
Ben Lindstrom206941f2001-04-15 14:27:16 +0000130 int (*errfunc)(const char *, int), glob_t *pglob)
Damien Miller4870afd2001-03-14 10:27:09 +1100131{
Damien Millerea12acf2001-07-14 12:14:56 +1000132 pglob->gl_opendir = fudge_opendir;
133 pglob->gl_readdir = (struct dirent *(*)(void *))fudge_readdir;
134 pglob->gl_closedir = (void (*)(void *))fudge_closedir;
Damien Miller4870afd2001-03-14 10:27:09 +1100135 pglob->gl_lstat = fudge_lstat;
136 pglob->gl_stat = fudge_stat;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100137
Damien Miller4870afd2001-03-14 10:27:09 +1100138 memset(&cur, 0, sizeof(cur));
Damien Miller3db5f532002-02-13 14:10:32 +1100139 cur.conn = conn;
Damien Miller4870afd2001-03-14 10:27:09 +1100140
Damien Miller3db5f532002-02-13 14:10:32 +1100141 return(glob(pattern, flags | GLOB_ALTDIRFUNC, errfunc, pglob));
Damien Miller4870afd2001-03-14 10:27:09 +1100142}