aboutsummaryrefslogtreecommitdiffstats
path: root/src/repo/s6-rc-set-new.c
blob: bc72f9206652e76c831775cef31630c60a95d0a4 (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
/* ISC license. */

#include <skalibs/bsdsnowflake.h>  /* stat */
#include <skalibs/nonposix.h>  /* mkdtemp */

#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>  /* rename */
#include <errno.h>

#include <skalibs/stat.h>
#include <skalibs/posixplz.h>
#include <skalibs/gol.h>
#include <skalibs/tai.h>
#include <skalibs/prog.h>
#include <skalibs/strerr.h>
#include <skalibs/direntry.h>
#include <skalibs/djbunix.h>

#include <s6-rc/config.h>
#include <s6-rc/s6rc.h>

#define USAGE "s6-rc-set-new [ -v verbosity ] [ -r repo ] setname..."
#define dieusage() strerr_dieusage(100, USAGE)

static void cleanup (char const *fn)
{
  int e = errno ;
  rm_rf(fn) ;
  errno = e ;
}

static inline void newset (char const *repo, char const *setname)
{
  size_t repolen = strlen(repo) ;
  size_t setlen = strlen(setname) ;
  char atomics[repolen + 18] ;
  char fn[repolen + 10 + setlen] ;
  char tmp[repolen + 18 + setlen] ;
  char sub[repolen + 25 + setlen] ;
  memcpy(atomics, repo, repolen) ;
  memcpy(atomics + repolen, "/sources/.atomics", 18) ;
  memcpy(fn, atomics, repolen + 9) ;
  memcpy(fn + repolen + 9, setname, setlen + 1) ;
  if (access(fn, F_OK) == -1)
  {
    if (errno != ENOENT) strerr_diefu2sys(111, "access ", fn) ;
  }
  else strerr_dief4x(100, "set ", setname, " already exists in repository ", repo) ;
  memcpy(tmp, fn, repolen + 9) ;
  tmp[repolen + 9] = '.' ;
  memcpy(tmp + repolen + 10, setname, setlen) ;
  memcpy(tmp + repolen + 10 + setlen, ":XXXXXX", 8) ;
  if (!mkdtemp(tmp)) strerr_diefu2sys(111, "mkdtemp ", tmp) ;

  for (size_t i = 0 ; i < 4 ; i++)
  {
    memcpy(sub + repolen + 18 + setlen, s6rc_repo_subnames[i], 7) ;
    if (mkdir(sub, 02755) == -1)
    {
      cleanup(tmp) ;
      strerr_diefu2sys(111, "mkdir ", sub) ;
    }
  }

  if (s6rc_repo_fillset(repo, tmp + repolen + 9, 0, 0))
  {
    cleanup(tmp) ;
    _exit(111) ;
  }

  if (chmod(tmp, 02755) == -1)
  {
    cleanup(tmp) ;
    strerr_diefu2sys(111, "chmod ", tmp) ;
  }
  if (symlink(tmp, fn) == -1)
  {
    cleanup(tmp) ;
    strerr_diefu4sys(111, "rename ", tmp, " to ", fn) ;
  }
}

enum gola_e
{
  GOLA_VERBOSITY,
  GOLA_REPODIR,
  GOLA_N
} ;

static gol_arg const rgola[] =
{
  { .so = 'v', .lo = "verbosity", .i = GOLA_VERBOSITY },
  { .so = 'r', .lo = "repodir", .i = GOLA_REPODIR }
} ;

int main (int argc, char const *const *argv)
{
  int fdlock ;
  unsigned int verbosity = 1 ;
  char const *wgola[GOLA_N] = { 0 } ;
  unsigned int golc ;

  PROG = "s6-rc-set-new" ;
  wgola[GOLA_REPODIR] = S6RC_REPO_BASE ;

  golc = gol_main(argc, argv, 0, 0, rgola, 2, 0, wgola) ;
  argc -= golc ; argv += golc ;
  if (wgola[GOLA_VERBOSITY] && !uint0_scan(wgola[GOLA_VERBOSITY], &verbosity))
    strerr_dief1x(100, "verbosity needs to be an unsigned integer") ;
  if (!argc) dieusage() ;
  for (unsigned int i = 0 ; i < argc ; i++)
  {
    if (!argv[i][0])
      strerr_dief2x(100, "set names cannot ", "be empty") ;
    if (argv[i][0] == '.')
      strerr_dief2x(100, "set names cannot ", "start with a dot") ;
    if (strchr(argv[i], '/') || strchr(argv[i], '\n'))
      strerr_dief2x(100, "set names cannot ", "contain / or newlines") ;
  }
  fdlock = s6rc_repo_lock(wgola[GOLA_REPODIR], 1) ;
  if (fdlock == -1) strerr_diefu2sys(111, "lock ", wgola[GOLA_REPODIR]) ;
  tain_now_g() ;

  for (unsigned int i = 0 ; i < argc ; i++)
    newset(wgola[GOLA_REPODIR], argv[i]) ;

  _exit(0) ;
}