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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
|
import
hashes, options, os, posix, sequtils, strutils, sugar, tables, osproc, streams, strtabs
type
HaltError* = object of CatchableError
code*: int
CommandError* = object of CatchableError
color*: Option[bool]
error*: bool
User* = tuple[
name: string,
uid: int,
gid: int,
groups: seq[int],
home: string,
shell: string
]
proc cgetenv*(name: cstring): cstring
{.importc: "getenv", header: "<stdlib.h>".}
proc csetenv*(name: cstring, value: cstring, override: cint): cint
{.importc: "setenv", header: "<stdlib.h>".}
proc cunsetenv*(name: cstring): cint
{.importc: "unsetenv", header: "<stdlib.h>".}
const
pkgLibDir* = getEnv("PROG_PKGLIBDIR")
localStateDir* = getEnv("PROG_LOCALSTATEDIR")
sysConfDir* = getEnv("PROG_SYSCONFDIR")
bashCmd* = "/bin/bash"
suCmd* = "/usr/bin/su"
sudoCmd* = "/usr/bin/sudo"
gitCmd* = "/usr/bin/git"
gpgCmd* = "/usr/bin/gpg"
gpgConfCmd* = "/usr/bin/gpgconf"
pacmanCmd* = "/usr/bin/pacman"
makepkgCmd* = "/usr/bin/makepkg"
template haltError*(exitCode: int): untyped =
var e: ref HaltError
new(e)
e.code = exitCode
e
template commandError*(message: string, colorNeeded: Option[bool] = none(bool),
showError: bool = true): untyped =
var e: ref CommandError
new(e)
e.msg = message
e.color = colorNeeded
e.error = showError
e
iterator items*[T](self: Option[T]): T {.raises: [].} =
if self.isSome:
yield self.unsafeGet
template len*[T](self: Option[T]): int =
if self.isSome: 1 else: 0
template orElse*[T, R](opt1: Option[T], opt2: Option[R]): Option[R] =
if opt1.isSome: opt1 else: opt2
template hash*[T](opt: Option[T]): int =
opt.map(hash).get(0)
proc opt*[K, V](table: Table[K, V], key: K): Option[V] =
if table.hasKey(key): some(table[key]) else: none(V)
proc opt*[K, V](table: OrderedTable[K, V], key: K): Option[V] =
if table.hasKey(key): some(table[key]) else: none(V)
proc optFirst*[T](s: openArray[T]): Option[T] =
if s.len > 0: some(s[s.low]) else: none(T)
proc optLast*[T](s: openArray[T]): Option[T] =
if s.len > 0: some(s[s.high]) else: none(T)
iterator enumerate*[T: enum]: T =
let elow = T.low.ord
let ehigh = T.high.ord
for i in elow .. ehigh:
yield T(i)
template namedPairsTyped(T: typedesc) =
iterator namedPairs*[K, V](table: T[K, V]): tuple[key: K, value: V] =
for key, value in table.pairs:
yield (key, value)
namedPairsTyped(Table)
namedPairsTyped(OrderedTable)
iterator reversed*[T](s: openArray[T]): T =
for i in countdown(s.len - 1, 0):
yield s[i]
proc groupBy*[T, X](s: seq[T], callback: T -> X): seq[tuple[key: X, values: seq[T]]] =
var table = initOrderedTable[X, ref seq[T]]()
for value in s:
let key = callback(value)
var work: ref seq[T]
if table.hasKey(key):
work = table[key]
else:
new(work)
work[] = newSeq[T]()
table[key] = work
work[] &= value
result = newSeq[tuple[key: X, values: seq[T]]]()
for key, values in table.pairs:
result &= (key, values[])
proc perror*(s: cstring): void {.importc, header: "<stdio.h>".}
template perror*: void = perror(getAppFilename())
proc execResult*(args: varargs[string]): int =
let cexec = allocCStringArray(args)
let code = execvp(cexec[0], cexec)
perror()
deallocCStringArray(cexec)
code
let
interruptSignals* = [SIGINT, SIGTERM]
template blockSignals*(signals: openArray[cint],
unblock: untyped, body: untyped): untyped =
block:
var sigset: Sigset
var sigoldset: Sigset
discard sigemptyset(sigset)
for s in signals:
discard sigaddset(sigset, s)
discard sigprocmask(SIG_BLOCK, sigset, sigoldset)
var unblocked = false
let unblock = () => (block:
if not unblocked:
discard sigprocmask(SIG_SETMASK, sigoldset, sigset)
unblocked = true)
try:
body
finally:
unblock()
proc forkWaitInternal(call: () -> int, beforeWait: () -> void): int =
blockSignals(interruptSignals, unblock):
let pid = fork()
if pid == 0:
unblock()
quit(call())
else:
beforeWait()
var status: cint = 1
discard waitpid(pid, status, 0)
if WIFEXITED(status):
return WEXITSTATUS(status)
else:
discard kill(getpid(), status)
return 1
proc forkWait*(call: () -> int): int =
forkWaitInternal(call, proc = discard)
var dPriv: bool = false
var writeFlag: bool = false
var fd: array[2, cint]
proc forkWaitRedirect*(call: () -> int): tuple[output: seq[string], code: int] =
if pipe(fd) == -1:
raiseOSError(osLastError())
var data = newSeq[char]()
writeFlag = true
let code = forkWaitInternal(() => (block: # "call" child process
discard close(fd[0])
call()), () => (block: # "beforewait" parent process
discard close(fd[1])
var buffer: array[80, char]
while true:
let count = read(fd[0], addr(buffer[0]), buffer.len)
if count <= 0:
break
data &= buffer[0 .. count - 1]
discard close(fd[0])))
writeFlag = false
var output = newStringOfCap(data.len)
for c in data:
output &= c
let lines = if output.len == 0:
@[]
elif output.len > 0 and $output[^1] == "\n":
output[0 .. ^2].split("\n")
else:
output.split("\n")
(lines, code)
proc getgrouplist*(user: cstring, group: Gid, groups: ptr cint, ngroups: var cint): cint
{.importc, header: "<grp.h>".}
proc setgroups*(size: csize_t, groups: ptr cint): cint
{.importc, header: "<grp.h>".}
proc getUser(uid: int): User =
var pw = getpwuid(Uid(uid))
if pw == nil:
raise newException(CatchableError, "")
var groups: array[100, cint]
var ngroups: cint = 100
if getgrouplist(pw.pw_name, pw.pw_gid, addr(groups[0]), ngroups) < 0:
raise newException(CatchableError, "")
else:
let groupsSeq = groups[0 .. ngroups - 1].map(x => x.int)
let res = ($pw.pw_name, pw.pw_uid.int, pw.pw_gid.int, groupsSeq,
$pw.pw_dir, $pw.pw_shell)
return res
let currentUser* = getUser(getuid().int)
let initialUser* = try:
let sudoUid = getEnv("SUDO_UID")
let polkitUid = getEnv("PKEXEC_UID")
let uidString = if sudoUid.len > 0:
some(sudoUid)
elif polkitUid.len > 0:
some(polkitUid)
else:
none(string)
let uid = uidString.get.parseInt
if uid == 0 or currentUser.uid != 0: none(User) else: some(getUser(uid))
except:
none(User)
proc canDropPrivileges*(): bool =
initialUser.isSome
proc dropPrivRedirect*(): bool =
dPriv = true
return true
proc execRedirect*(args: varargs[string]): int =
var
code: int
p: owned(Process)
argSeq: seq[string] = @args
iUser: User
envs: StringTableRef = nil
if dPriv == true:
if initialUser.isSome:
iUser = initialUser.unsafeGet
envs = newStringTable(modeCaseSensitive)
if iUser.name != "":
var groups = iUser.groups.map(x => x.cint)
if setgroups(cast[csize_t](iUser.groups.len), addr(groups[0])) < 0:
envs = nil
if setgid((Gid) iUser.gid) != 0:
envs = nil
if setuid((Uid) iUser.uid) != 0:
envs = nil
for key, value in envPairs():
if key in ["SUDO_COMMAND", "SUDO_USER", "SUDO_UID", "SUDO_GID", "PKEXEC_UID"]:
continue
if key in ["USER", "USERNAME", "LOGNAME"]:
envs[key] = iUser.name
continue
if key in ["HOME"]:
envs[key] = iUser.home
continue
if key in ["SHELL"]:
envs[key] = iUser.shell
continue
envs[key] = value
if envs == nil:
echo "Error: failed to drop privileges"
return -1
discard close(fd[0])
argSeq.delete(0)
try:
p = startProcess(command = args[0], args = argSeq, env = envs, options = {poStdErrToStdOut, poUsePath})
except:
echo "Error: " & getCurrentExceptionMsg()
return -1
var outp = outputStream(p)
close(inputStream(p))
var line = newStringOfCap(120).TaintedString
while true:
if outp.readLine(line):
if writeFlag == false:
echo line.string
else:
discard write(fd[1], line.string.cstring, len(line.string))
discard write(fd[1], "\n".cstring, 1)
else:
code = peekExitCode(p)
if code != -1: break
close(p)
discard close(fd[1])
return code
proc dropPrivileges*(): bool =
if initialUser.isSome:
let user = initialUser.unsafeGet
var groups = user.groups.map(x => x.cint)
if setgroups(cast[csize_t](user.groups.len), addr(groups[0])) < 0:
return false
if setgid((Gid) user.gid) != 0:
return false
if setuid((Uid) user.uid) != 0:
return false
template replaceExisting(name: string, value: string) =
if cgetenv(name) != nil:
discard csetenv(name, value, 1)
replaceExisting("USER", user.name)
replaceExisting("USERNAME", user.name)
replaceExisting("LOGNAME", user.name)
replaceExisting("HOME", user.home)
replaceExisting("SHELL", user.shell)
discard cunsetenv("SUDO_COMMAND")
discard cunsetenv("SUDO_USER")
discard cunsetenv("SUDO_UID")
discard cunsetenv("SUDO_GID")
discard cunsetenv("PKEXEC_UID")
return true
else:
return true
proc checkExec(file: string): bool =
var statv: Stat
stat(file, statv) == 0 and (statv.st_mode.cint and S_IXUSR) == S_IXUSR
let sudoPrefix*: seq[string] = if checkExec(sudoCmd):
@[sudoCmd]
elif checkExec(suCmd):
@[suCmd, "root", "-c", "exec \"$@\"", "--", "sh"]
else:
@[]
var intSigact: SigAction
intSigact.sa_handler = SIG_DFL
discard sigaction(SIGINT, intSigact)
var wasInterrupted = false
proc interruptHandler(signal: cint): void {.noconv.} =
wasInterrupted = true
template catchInterrupt*(body: untyped): untyped =
block:
var intSigact: SigAction
var oldIntSigact: SigAction
intSigact.sa_handler = interruptHandler
discard sigaction(SIGINT, intSigact, oldIntSigact)
let data = body
let interrupted = wasInterrupted
wasInterrupted = false
discard sigaction(SIGINT, oldIntSigact)
(data, interrupted)
proc toString*[T](arr: array[T, char], length: Option[int]): string =
var workLength = length.get(T.high + 1)
var str = newStringOfCap(workLength)
for i in 0 .. workLength - 1:
let c = arr[i]
if length.isNone and c == '\0':
break
str.add(arr[i])
str
proc removeDirQuiet*(s: string) =
try:
removeDir(s)
except:
discard
const bashSpecialCharacters = " \t\"'`()[]{}#&|;!\\*~<>?"
proc bashEscape*(s: string): string =
result = ""
for c in s:
if c in bashSpecialCharacters:
result &= "\\" & c
elif c == "\n"[0]:
result &= "$'\\n'"
elif c.cuint < 0x20.cuint or c.cuint > 0x80.cuint:
result &= "$'\\0x" & c.uint8.toHex & "'"
else:
result &= c
proc dgettext(domain: cstring, s: cstring): cstring
{.cdecl, importc: "dgettext".}
proc gettext(domain: string, s: string): string =
let translated = dgettext(domain, s)
if translated != nil: $translated else: s
proc gettextHandle(domain: string, s: string): string =
let res = gettext(domain, s).replace("%s", "$#").replace("%c", "$#")
if res.len > 0 and res[^1 .. ^1] == "\n": res[0 .. ^2] else: res
template tr*(s: string): string =
gettext("pakku", s)
template trp*(s: string): string =
gettextHandle("pacman", s)
template tra*(s: string): string =
gettextHandle("libalpm", s)
template trc*(s: string): string =
gettextHandle("libc", s)
|