aboutsummaryrefslogtreecommitdiffstats
path: root/src/wrap-file.c
blob: f2cf305e3a2eb093f314054a37641ce3c73db4ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
/* Copyright (C) 2003 MontaVista Software, Inc.
   Written by Daniel Jacobowitz <drow@mvista.com>, 2003.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2, or (at your option)
   any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software Foundation,
   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */

#include <config.h>
#include <assert.h>
#include <errno.h>
#include <error.h>
#include <fcntl.h>
#include <ftw.h>
#include <glob.h>
#include <stdarg.h>
#include <stddef.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/xattr.h>
#include <time.h>
#include <unistd.h>
#include <utime.h>
#include "prelink.h"

#ifndef PATH_MAX
#define PATH_MAX 1024
#endif

#ifndef MAXSYMLINKS
#define MAXSYMLINKS 20
#endif

extern char *canon_filename (const char *name, int nested, struct stat64 *stp,
			     const char *chroot, int allow_last_link,
			     int allow_missing);

const char *sysroot;

char *
sysroot_file_name (const char *name, int allow_last_link)
{
  struct stat64 st;
  char *ret;

  if (sysroot == NULL)
    return (char *) name;

  ret = canon_filename (name, 0, &st, sysroot, allow_last_link, 1);

  if (ret == NULL)
    /* That will have set errno.  */
    return NULL;

  return ret;
}

char *
unsysroot_file_name (const char *name)
{
  if (sysroot)
    {
      int sysroot_len = strlen (sysroot);
      if (strncmp (name, sysroot, sysroot_len) == 0)
	{
	  if (name[sysroot_len] == '/')
	    return strdup (name + sysroot_len);
	  else if (name[sysroot_len] == 0)
	    return strdup ("/");
	}
    }
  return (char *)name;
}

static int
wrap_stat_body (const char *file, struct stat64 *buf, int lstat)
{
  char* file_copy;
  char *tmpname;
  int ret;
  int len;

  tmpname = sysroot_file_name (file, lstat);

  if (tmpname == NULL)
    return -1;

  file_copy = strdup (tmpname);

  if (tmpname != file)
    free (tmpname);

  if (file_copy == NULL)
    return -1;

  len = strlen (file_copy);
  if (len && (file_copy[len - 1] == '/' || file_copy[len - 1] == '\\'))
    file_copy[len - 1] = '\0';

  ret = lstat ? lstat64 (file_copy, buf) : stat64 (file_copy, buf);

  free (file_copy);

  return ret;
}

int
wrap_lstat64 (const char *file, struct stat64 *buf)
{
  return wrap_stat_body (file, buf, 1);
}

int
wrap_stat64 (const char *file, struct stat64 *buf)
{
  return wrap_stat_body (file, buf, 0);
}

int
wrap_rename (const char *old, const char *new)
{
  char *tmpold = sysroot_file_name (old, 1);
  char *tmpnew;
  int ret;

  if (tmpold == NULL)
    return -1;

  tmpnew = sysroot_file_name (new, 1);
  if (tmpnew == NULL)
    return -1;

  ret = rename (tmpold, tmpnew);

  if (tmpold != old)
    free (tmpold);
  if (tmpnew != new)
    free (tmpnew);
  return ret;
}

int
wrap_open (const char *name, int mode, ...)
{
  char *tmpname = sysroot_file_name (name, 0);
  int ret;

  if (tmpname == NULL)
    return -1;

  if (mode & O_CREAT)
    {
      va_list va;
      int flags;
      va_start (va, mode);
      flags = va_arg (va, int);
      va_end (va);
      ret = open (tmpname, mode, flags);
    }
  else
    ret = open (tmpname, mode);

  if (tmpname != name)
    free (tmpname);
  return ret;
}

int
wrap_access (const char *name, int mode)
{
  char *tmpname = sysroot_file_name (name, 0);
  int ret;

  if (tmpname == NULL)
    return -1;

  ret = access (tmpname, mode);

  if (tmpname != name)
    free (tmpname);
  return ret;
}

int
wrap_link (const char *old, const char *new)
{
  char *tmpold = sysroot_file_name (old, 1);
  char *tmpnew;
  int ret;

  if (tmpold == NULL)
    return -1;

  tmpnew = sysroot_file_name (new, 1);
  if (tmpnew == NULL)
    return -1;

  ret = link (tmpold, tmpnew);

  if (tmpold != old)
    free (tmpold);
  if (tmpnew != new)
    free (tmpnew);
  return ret;
}

/* Note that this isn't recursive safe, since nftw64 doesn't
   pass an opaque object around to use.  But that fits our needs
   for now.  */

static __nftw64_func_t nftw64_cur_func;

static int
wrap_nftw64_func (const char *filename, const struct stat64 *status,
		  int flag, struct FTW *info)
{
  char *tmpname = unsysroot_file_name (filename);
  int ret = nftw64_cur_func (tmpname, status, flag, info);

  if (tmpname != filename)
    free (tmpname);
  return ret;
}

int
wrap_nftw64 (const char *dir, __nftw64_func_t func,
	     int descriptors, int flag)
{
  char *tmpdir = sysroot_file_name (dir, 1);
  int ret;

  if (tmpdir == NULL)
    return -1;

  nftw64_cur_func = func;
  ret = nftw64 (tmpdir, wrap_nftw64_func, descriptors, flag);

  if (tmpdir != dir)
    free (tmpdir);
  return ret;
}

int
wrap_utime (const char *file, struct utimbuf *file_times)
{
  char *tmpname = sysroot_file_name (file, 0);
  int ret;

  if (tmpname == NULL)
    return -1;

  ret = utime (tmpname, file_times);

  if (tmpname != file)
    free (tmpname);
  return ret;
}

int
wrap_mkstemp (char *filename)
{
  char *tmpname = sysroot_file_name (filename, 1);
  int ret;

  if (tmpname == NULL)
    return -1;

  ret = mkstemp (tmpname);

  if (tmpname != filename)
    {
      strcpy (filename, tmpname + strlen (sysroot));
      free (tmpname);
    }
  return ret;
}

int
wrap_unlink (const char *filename)
{
  char *tmpname = sysroot_file_name (filename, 1);
  int ret;

  if (tmpname == NULL)
    return -1;

  ret = unlink (tmpname);

  if (tmpname != filename)
    free (tmpname);
  return ret;
}

int
wrap_readlink (const char *path, char *buf, int len)
{
  char *tmpname = sysroot_file_name (path, 1);
  int ret;

  if (tmpname == NULL)
    return -1;

  ret = readlink (tmpname, buf, len);

  if (tmpname != path)
    free (tmpname);
  return ret;
}

int
wrap_setxattr (const char *path, const char *name, const void *value,
               size_t size, int flags)
{
  char *tmpname = sysroot_file_name (path, 0);
  int ret;

  if (tmpname == NULL)
    return -1;

  ret = setxattr (tmpname, name, value, size, flags);

  if (tmpname != path)
    free (tmpname);
  return ret;
}

ssize_t
wrap_getxattr (const char *path, const char *name, void *value,
               size_t size)
{
  char *tmpname = sysroot_file_name (path, 0);
  ssize_t ret;

  if (tmpname == NULL)
    return -1;

  ret = getxattr (tmpname, name, value, size);

  if (tmpname != path)
    free (tmpname);
  return ret;
}

ssize_t
wrap_listxattr (const char *path, char *list, size_t size)
{
  char *tmpname = sysroot_file_name (path, 0);
  ssize_t ret;

  if (tmpname == NULL)
    return -1;

  ret = listxattr (tmpname, list, size);

  if (tmpname != path)
    free (tmpname);
  return ret;
}

int
wrap_glob (const char *pattern, int flags,
           int (*errfunc) (const char *epath, int eerrno),
           glob_t *pglob)
{
  char *tmp;
  int ret;

  if (!sysroot)
    return glob (pattern, flags, errfunc, pglob);

  asprintf (&tmp, "%s%s", sysroot, pattern);

  ret = glob(tmp, flags, errfunc, pglob);
  if (!ret)
    {
      size_t n;

      for (n = 0; n < pglob->gl_pathc; ++n)
        {
          char *usname = unsysroot_file_name(pglob->gl_pathv[n]);
          if (usname != pglob->gl_pathv[n])
            free(pglob->gl_pathv[n]);
          pglob->gl_pathv[n] = usname;
        }
    }

  free(tmp);
  return ret;
}