]> andersk Git - openssh.git/blame - sftp-glob.c
- (djm) Reorder tests and library inclusion for Krb4/AFS to try to
[openssh.git] / sftp-glob.c
CommitLineData
2e4fb373 1/*
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"
d50d9b63 26RCSID("$OpenBSD: sftp-glob.c,v 1.2 2001/03/16 08:16:18 djm Exp $");
2e4fb373 27
2e4fb373 28#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
52void *fudge_opendir(const char *path)
53{
54 struct SFTP_OPENDIR *r;
55
56 r = xmalloc(sizeof(*r));
57
58 if (do_readdir(cur.fd_in, cur.fd_out, (char*)path, &r->dir))
59 return(NULL);
60
61 r->offset = 0;
62
63 return((void*)r);
64}
65
66struct dirent *fudge_readdir(struct SFTP_OPENDIR *od)
67{
68 static struct dirent ret;
69#ifdef __GNU_LIBRARY__
70 static int inum = 1;
71#endif /* __GNU_LIBRARY__ */
72
73 if (od->dir[od->offset] == NULL)
74 return(NULL);
75
76 memset(&ret, 0, sizeof(ret));
77 strlcpy(ret.d_name, od->dir[od->offset++]->filename,
78 sizeof(ret.d_name));
79
80#ifdef __GNU_LIBRARY__
81 /*
82 * Idiot glibc uses extensions to struct dirent for readdir with
83 * ALTDIRFUNCs. Not that this is documented anywhere but the
84 * source... Fake an inode number to appease it.
85 */
86 ret.d_ino = inum++;
87 if (!inum)
88 inum = 1;
89#endif /* __GNU_LIBRARY__ */
90
91 return(&ret);
92}
93
94void fudge_closedir(struct SFTP_OPENDIR *od)
95{
96 free_sftp_dirents(od->dir);
97 free(od);
98}
99
100void attrib_to_stat(Attrib *a, struct stat *st)
101{
102 memset(st, 0, sizeof(*st));
103
104 if (a->flags & SSH2_FILEXFER_ATTR_SIZE)
105 st->st_size = a->size;
106 if (a->flags & SSH2_FILEXFER_ATTR_UIDGID) {
107 st->st_uid = a->uid;
108 st->st_gid = a->gid;
109 }
110 if (a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS)
111 st->st_mode = a->perm;
112 if (a->flags & SSH2_FILEXFER_ATTR_ACMODTIME) {
113 st->st_atime = a->atime;
114 st->st_mtime = a->mtime;
115 }
116}
117
118int fudge_lstat(const char *path, struct stat *st)
119{
120 Attrib *a;
121
d50d9b63 122 if (!(a = do_lstat(cur.fd_in, cur.fd_out, (char*)path, 0)))
2e4fb373 123 return(-1);
124
125 attrib_to_stat(a, st);
126
127 return(0);
128}
129
130int fudge_stat(const char *path, struct stat *st)
131{
132 Attrib *a;
133
d50d9b63 134 if (!(a = do_stat(cur.fd_in, cur.fd_out, (char*)path, 0)))
2e4fb373 135 return(-1);
136
137 attrib_to_stat(a, st);
138
139 return(0);
140}
141
142int
143remote_glob(int fd_in, int fd_out, const char *pattern, int flags,
144 const int (*errfunc)(const char *, int), glob_t *pglob)
145{
146 pglob->gl_opendir = (void*)fudge_opendir;
147 pglob->gl_readdir = (void*)fudge_readdir;
148 pglob->gl_closedir = (void*)fudge_closedir;
149 pglob->gl_lstat = fudge_lstat;
150 pglob->gl_stat = fudge_stat;
151
152 memset(&cur, 0, sizeof(cur));
153 cur.fd_in = fd_in;
154 cur.fd_out = fd_out;
155
156 return(glob(pattern, flags | GLOB_ALTDIRFUNC, (void*)errfunc,
157 pglob));
158}
This page took 0.084068 seconds and 5 git commands to generate.