summaryrefslogtreecommitdiff
path: root/src/libstddjb/filecopy_unsafe.c
blob: 68bcc5b4a19c273339847c5059876ee34b282100 (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
/* ISC license. */

#include <errno.h>
#include <fcntl.h>
#include <skalibs/djbunix.h>

int filecopy_unsafe (char const *src, char const *dst, unsigned int mode)
{
  int d ;
  int s = open2(src, O_RDONLY) ;
  if (s < 0) return 0 ;
  d = open3(dst, O_WRONLY | O_CREAT | O_TRUNC, mode) ;
  if (d < 0)
  {
    int e = errno ;
    fd_close(s) ;
    errno = e ;
    return 0 ;
  }
  if (fd_cat(s, d) < 0)
  {
    int e = errno ;
    fd_close(d) ;
    fd_close(s) ;
    errno = e ;
    return 0 ;
  }
  fd_close(d) ;
  fd_close(s) ;
  return 1 ;
}