1 /* $OpenBSD: sftp-glob.c,v 1.19 2006/03/25 13:17:02 djm Exp $ */
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.
20 #include <sys/types.h>
21 #ifdef HAVE_SYS_STAT_H
22 # include <sys/stat.h>
33 #include "sftp-common.h"
34 #include "sftp-client.h"
36 int remote_glob(struct sftp_conn
*, const char *, int,
37 int (*)(const char *, int), glob_t
*);
45 struct sftp_conn
*conn
;
49 fudge_opendir(const char *path
)
51 struct SFTP_OPENDIR
*r
;
53 r
= xmalloc(sizeof(*r
));
55 if (do_readdir(cur
.conn
, (char *)path
, &r
->dir
)) {
65 static struct dirent
*
66 fudge_readdir(struct SFTP_OPENDIR
*od
)
68 /* Solaris needs sizeof(dirent) + path length (see below) */
69 static char buf
[sizeof(struct dirent
) + MAXPATHLEN
];
70 struct dirent
*ret
= (struct dirent
*)buf
;
71 #ifdef __GNU_LIBRARY__
73 #endif /* __GNU_LIBRARY__ */
75 if (od
->dir
[od
->offset
] == NULL
)
78 memset(buf
, 0, sizeof(buf
));
81 * Solaris defines dirent->d_name as a one byte array and expects
82 * you to hack around it.
84 #ifdef BROKEN_ONE_BYTE_DIRENT_D_NAME
85 strlcpy(ret
->d_name
, od
->dir
[od
->offset
++]->filename
, MAXPATHLEN
);
87 strlcpy(ret
->d_name
, od
->dir
[od
->offset
++]->filename
,
90 #ifdef __GNU_LIBRARY__
92 * Idiot glibc uses extensions to struct dirent for readdir with
93 * ALTDIRFUNCs. Not that this is documented anywhere but the
94 * source... Fake an inode number to appease it.
99 #endif /* __GNU_LIBRARY__ */
105 fudge_closedir(struct SFTP_OPENDIR
*od
)
107 free_sftp_dirents(od
->dir
);
112 fudge_lstat(const char *path
, struct stat
*st
)
116 if (!(a
= do_lstat(cur
.conn
, (char *)path
, 0)))
119 attrib_to_stat(a
, st
);
125 fudge_stat(const char *path
, struct stat
*st
)
129 if (!(a
= do_stat(cur
.conn
, (char *)path
, 0)))
132 attrib_to_stat(a
, st
);
138 remote_glob(struct sftp_conn
*conn
, const char *pattern
, int flags
,
139 int (*errfunc
)(const char *, int), glob_t
*pglob
)
141 pglob
->gl_opendir
= fudge_opendir
;
142 pglob
->gl_readdir
= (struct dirent
*(*)(void *))fudge_readdir
;
143 pglob
->gl_closedir
= (void (*)(void *))fudge_closedir
;
144 pglob
->gl_lstat
= fudge_lstat
;
145 pglob
->gl_stat
= fudge_stat
;
147 memset(&cur
, 0, sizeof(cur
));
150 return(glob(pattern
, flags
| GLOB_ALTDIRFUNC
, errfunc
, pglob
));