|
root / tools / zygctl / src
src Plain Text 320 lines 9.9 KB
  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
/******************************************************************************
                __               ____                __
               / /   ___  ____ _/ __/_____________ _/ /__
              / /   / _ \/ __ `/ /_/ ___/ ___/ __ `/ / _ \
             / /___/  __/ /_/ / __(__  ) /__/ /_/ / /  __/
            /_____/\___/\__,_/_/ /____/\___/\__,_/_/\___/

    (C)opyright 2025-2026, Leafscale, LLC -  https://www.leafscale.com

    Project: zygctl
   Filename: main.reef
    Authors: Chris Tusa <chris.tusa@leafscale.com>
    License: <see LICENSE file included with this source code>
Description: Administrative CLI for zyginit service manager

******************************************************************************/

module zygctl

import sys.args as args
import sys.env as env
import sys.process as process
import net.unix as unix
import io.file
import io.dir
import core.str
import core.result as res
import version

extern "C" fn zyginit_symlink(target: string, linkpath: string): int
extern "C" fn zyginit_isatty(fd: int): int

fn client_should_be_plain(): bool
    if env.has_env("NO_COLOR")  return true  end if
    if zyginit_isatty(1) == 0   return true  end if
    let term = env.get_env_or("TERM", "")
    if str.length(term) == 0    return true  end if
    if term == "dumb"           return true  end if
    return false
end client_should_be_plain

fn SOCKET_PATH(): string
    return env.get_env_or("ZYGINIT_SOCKET", "/var/run/zyginit.sock")
end SOCKET_PATH

fn CONFIG_DIR(): string
    return env.get_env_or("ZYGINIT_CONFIG_DIR", "/etc/zyginit")
end CONFIG_DIR

proc main()
    let argc = args.count()

    if argc < 2
        print_usage()
        return
    end if

    let command = args.get(1)

    // Local commands (no daemon needed)
    if command == "help" or command == "--help" or command == "-h"
        print_usage()
        return
    end if

    if command == "version" or command == "--version"
        println("zygctl " + version.VERSION())
        return
    end if

    // Local commands that operate on the filesystem directly
    if command == "enable"
        if argc < 3
            println("error: usage: zygctl enable <service>")
            return
        end if
        cmd_enable(args.get(2))
        return
    end if

    if command == "disable"
        if argc < 3
            println("error: usage: zygctl disable <service>")
            return
        end if
        cmd_disable(args.get(2))
        return
    end if

    // single/multi are forwarded to zyginit's socket — handled there.
    // (Earlier versions of zygctl had local stubs for these; removed
    // now that the daemon implements runlevel transitions.)

    // TTY-aware dispatch for status and list:
    // When stdout is not a TTY (piped/redirected), or when NO_COLOR is set,
    // append PLAIN so the daemon sends plain text without ANSI escapes.
    if command == "status"
        mut req = "status"
        if client_should_be_plain()
            req = "status plain"
        end if
        if argc >= 3
            req = str.concat(req, " ")
            req = str.concat(req, args.get(2))
        end if
        req = str.concat(req, "\n")
        let connect_r = unix.unix_connect(SOCKET_PATH())
        if res.is_err(connect_r)
            println("zygctl: cannot connect to zyginit at " + SOCKET_PATH())
            println("zygctl: is zyginit running?")
            return
        end if
        let fd = res.unwrap_ok(connect_r)
        unix.unix_send(fd, req)
        let resp_r = unix.unix_recv(fd, 4096)
        unix.unix_close(fd)
        let resp = res.unwrap_or(resp_r, "")
        if str.length(resp) > 0
            print(resp)
        end if
        return
    end if

    if command == "list"
        mut req = "list"
        if client_should_be_plain()
            req = "list plain"
        end if
        req = str.concat(req, "\n")
        let connect_r = unix.unix_connect(SOCKET_PATH())
        if res.is_err(connect_r)
            println("zygctl: cannot connect to zyginit at " + SOCKET_PATH())
            println("zygctl: is zyginit running?")
            return
        end if
        let fd = res.unwrap_ok(connect_r)
        unix.unix_send(fd, req)
        let resp_r = unix.unix_recv(fd, 4096)
        unix.unix_close(fd)
        let resp = res.unwrap_or(resp_r, "")
        if str.length(resp) > 0
            print(resp)
        end if
        return
    end if

    // Build the message to send to zyginit
    mut message = command

    if argc >= 3
        message = str.concat(message, " ")
        message = str.concat(message, args.get(2))
    end if

    message = str.concat(message, "\n")

    // Connect to zyginit socket
    let sock_path = SOCKET_PATH()
    let connect_r = unix.unix_connect(sock_path)

    if res.is_err(connect_r)
        println("zygctl: cannot connect to zyginit at " + sock_path)
        println("zygctl: is zyginit running?")
        return
    end if
    let fd = res.unwrap_ok(connect_r)

    // Send command
    unix.unix_send(fd, message)

    // Read response
    let response_r = unix.unix_recv(fd, 4096)
    unix.unix_close(fd)
    let response = res.unwrap_or(response_r, "")

    if str.length(response) > 0
        print(response)
    end if
end main

// ============================================================================
// Local commands — enable/disable (filesystem operations, no daemon needed)
// ============================================================================

proc cmd_enable(name: string)
    let config_dir = CONFIG_DIR()
    let svc_dir = str.concat(str.concat(config_dir, "/services/"), name)

    if not dir.dir_exists(svc_dir)
        println("error: no service definition found: " + svc_dir)
        return
    end if

    let enabled_dir = str.concat(config_dir, "/enabled.d")

    // Create enabled.d/ if it does not exist
    if not dir.dir_exists(enabled_dir)
        if res.is_err(dir.create_dir(enabled_dir))
            println("error: cannot create " + enabled_dir)
            return
        end if
    end if

    let link_path = str.concat(str.concat(enabled_dir, "/"), name)

    if file.fileExists(link_path)
        println(name + " is already enabled")
        return
    end if

    // Create symlink: enabled.d/<name> -> ../services/<name>
    let target = str.concat("../services/", name)
    let rc = zyginit_symlink(target, link_path)
    if rc < 0
        println("error: failed to create symlink for " + name)
        return
    end if

    println(name + " enabled")
end cmd_enable

proc cmd_disable(name: string)
    let config_dir = CONFIG_DIR()
    let enabled_dir = str.concat(config_dir, "/enabled.d")
    let link_path = str.concat(str.concat(enabled_dir, "/"), name)

    if not file.fileExists(link_path)
        println(name + " is not enabled")
        return
    end if

    if res.is_ok(file.deleteFile(link_path))
        println(name + " disabled")
    else
        println("error: failed to remove " + link_path)
    end if
end cmd_disable

// ============================================================================
// Usage
// ============================================================================

proc print_usage()
    println("zygctl — zyginit service control")
    println("")
    println("Usage: zygctl <command> [argument]")
    println("")
    println("Commands:")
    println("  status [name]    Show service status (all or one)")
    println("  start <name>     Start a service")
    println("  stop <name>      Stop a service")
    println("  restart <name>   Restart a service")
    println("  enable <name>    Enable a service (symlink in enabled.d/)")
    println("  disable <name>   Disable a service (remove from enabled.d/)")
    println("  reload           Reload service configuration")
    println("  replace [--wait=N]")
    println("                   Replace running zyginit via execve(/sbin/init);")
    println("                   keeps services alive across the swap")
    println("  log <name>       Show service output log")
    println("  list             List all service definitions")
    println("  halt             Cleanly stop all services and halt the system")
    println("  reboot           Cleanly stop all services and reboot")
    println("  poweroff         Cleanly stop all services and power off")
    println("  single           Transition to single-user (recovery) mode")
    println("  multi            Transition to multi-user mode")
    println("  version          Show version")
    println("  help             Show this help")
    println("")
    println("Environment:")
    println("  ZYGINIT_SOCKET     Socket path (default: /var/run/zyginit.sock)")
    println("  ZYGINIT_CONFIG_DIR Config directory (default: /etc/zyginit)")
end print_usage

end module
/*
 * symlink_wrapper.c — Wrapper for symlink() to avoid const char* FFI conflict
 *
 * Reef generates char* for string parameters, but POSIX symlink() expects
 * const char*. This thin wrapper bridges the two declarations.
 */

#include <unistd.h>

int zyginit_symlink(char *target, char *linkpath) {
    return symlink(target, linkpath);
}

int zyginit_isatty(int fd) {
    return isatty(fd) ? 1 : 0;
}
/******************************************************************************
                __               ____                __
               / /   ___  ____ _/ __/_____________ _/ /__
              / /   / _ \/ __ `/ /_/ ___/ ___/ __ `/ / _ \
             / /___/  __/ /_/ / __(__  ) /__/ /_/ / /  __/
            /_____/\___/\__,_/_/ /____/\___/\__,_/_/\___/

    (C)opyright 2025-2026, Leafscale, LLC -  https://www.leafscale.com

    Project: zygctl
   Filename: version.reef
    Authors: Chris Tusa <chris.tusa@leafscale.com>
    License: <see LICENSE file included with this source code>
Description: Generated version constant. Do not edit by hand — regenerated
             by scripts/bump-version.sh.

******************************************************************************/

module version

export
    fn VERSION(): string
end export

fn VERSION(): string
    return "0.2.7"
end VERSION

end module