2 * Copyright (c) 2000-2011, 2013, 2014, 2017-2019 Apple Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
25 * Modification History
27 * June 1, 2001 Allan Nathanson <ajn@apple.com>
28 * - public API conversion
30 * November 9, 2000 Allan Nathanson <ajn@apple.com>
36 #include <sys/errno.h>
40 #include "dictionary.h"
43 #include "notifications.h"
50 const cmdInfo commands_store
[] = {
51 /* cmd minArgs maxArgs func group ctype */
54 { "help", 0, 0, do_help
, 0, 0,
55 " help : list available commands" },
57 { "f.read", 1, 1, do_readFile
, 0, 0,
58 " f.read file : process commands from file" },
60 { "quit", 0, 0, do_quit
, 0, 0,
63 { "q", 0, 0, do_quit
, 0, -1,
66 { "exit", 0, 0, do_quit
, 0, -1,
69 /* local dictionary manipulation commands */
71 { "d.init", 0, 0, do_dictInit
, 1, 0,
72 " d.init : initialize (empty) dictionary" },
74 { "d.show", 0, 0, do_dictShow
, 1, 0,
75 " d.show : show dictionary contents" },
77 { "d.add", 2, 101, do_dictSetKey
, 1, 0,
78 " d.add key [*#?%] val [v2 ...] : add information to dictionary\n"
79 " (*=array, #=number, ?=boolean, %=hex data)" },
81 { "d.remove", 1, 1, do_dictRemoveKey
, 1, 0,
82 " d.remove key : remove key from dictionary" },
84 /* dynamic store manipulation commands */
86 { "open", 0, 1, do_open
, 2, 1,
87 " open [\"temporary\"] : open a session with \"configd\"" },
89 { "close", 0, 0, do_close
, 2, 1,
90 " close : close current \"configd\" session" },
92 { "block", 0, 1, do_block
, 3, 1,
93 " block [\"begin\" | \"end\"] : block multiple data store transactions" },
95 { "list", 0, 2, do_list
, 4, 0,
96 " list [pattern] : list keys in data store" },
98 { "add", 1, 2, do_add
, 4, 0,
99 " add key [\"temporary\"] : add key in data store w/current dict" },
101 { "get", 1, 1, do_get
, 4, 0,
102 " get key : get dict from data store w/key" },
104 { "set", 1, 1, do_set
, 4, 0,
105 " set key : set key in data store w/current dict" },
107 { "show", 1, 2, do_show
, 4, 0,
108 " show key [\"pattern\"] : show values in data store w/key" },
110 { "remove", 1, 1, do_remove
, 4, 0,
111 " remove key : remove key from data store" },
113 { "notify", 1, 1, do_notify
, 4, 0,
114 " notify key : notify key in data store" },
116 { "n.list", 0, 1, do_notify_list
, 5, 0,
117 " n.list [\"pattern\"] : list notification keys" },
119 { "n.add", 1, 2, do_notify_add
, 5, 0,
120 " n.add key [\"pattern\"] : add notification key" },
122 { "n.remove", 1, 2, do_notify_remove
, 5, 0,
123 " n.remove key [\"pattern\"] : remove notification key" },
125 { "n.changes", 0, 0, do_notify_changes
, 5, 0,
126 " n.changes : list changed keys" },
128 { "n.watch", 0, 0, do_notify_watch
, 5, 0,
129 " n.watch : watch for changes" },
131 { "n.wait", 0, 0, do_notify_wait
, 5, 2,
132 " n.wait : wait for changes" },
134 { "n.file", 0, 1, do_notify_file
, 5, 2,
135 " n.file [identifier] : watch for changes via file" },
137 { "n.cancel", 0, 1, do_notify_cancel
, 5, 0,
138 " n.cancel : cancel notification requests" },
140 { "snapshot", 0, 1, do_snapshot
, 99, 2,
141 " snapshot [file] : save snapshot of store and session data" }
144 const int nCommands_store
= (sizeof(commands_store
)/sizeof(cmdInfo
));
148 const cmdInfo commands_net
[] = {
149 /* cmd minArgs maxArgs func group ctype */
152 { "help", 0, 0, do_help
, 0, 0,
153 " help : list available commands" },
155 { "f.read", 1, 1, do_readFile
, 0, 0,
156 " f.read file : process commands from file" },
158 { "quit", 0, 1, do_net_quit
, 0, 0,
159 " quit [!] : quit" },
161 { "q", 0, 1, do_net_quit
, 0, -1,
164 { "exit", 0, 1, do_net_quit
, 0, -1,
167 /* network configuration manipulation commands */
169 { "open", 0, 1, do_net_open
, 2, 1,
170 " open : open the network configuration" },
172 { "commit", 0, 0, do_net_commit
, 2, 0,
173 " commit : commit any changes" },
175 { "apply", 0, 0, do_net_apply
, 2, 0,
176 " apply : apply any changes" },
178 { "close", 0, 1, do_net_close
, 2, 1,
179 " close [!] : close the network configuration" },
181 { "create", 1, 3, do_net_create
, 3, 0,
182 " create interface <interfaceType> [ <interfaceName> | <interface#> ]\n"
183 " create protocol <protocolType>\n"
184 " create service [ <interfaceName> | <interface#> [ <serviceName> ]]\n"
185 " create set [setName]" },
187 { "disable", 1, 2, do_net_disable
, 4, 0,
188 " disable protocol [ <protocolType> ]\n"
189 " disable service [ <serviceName> | <service#> ]" },
191 { "enable", 1, 2, do_net_enable
, 5, 0,
192 " enable protocol [ <protocolType> ]\n"
193 " enable service [ <serviceName> | <service#> ]" },
195 { "remove", 1, 2, do_net_remove
, 6, 0,
196 " remove protocol [ <protocolType> ]\n"
197 " remove service [ <serviceName> | <service#> ]\n"
198 " remove set [ <setName> | <set#> ]" },
200 { "select", 2, 3, do_net_select
, 7, 0,
201 " select interface <interfaceName> | <interface#> | $child | $service | $vlan | $bond <memberName> | $bridge <memberName>\n"
202 " select protocol <protocolType>\n"
203 " select service <serviceName> | <service#>\n"
204 " select set <setName> | <set#>" },
206 { "set", 2, 101, do_net_set
, 8, 0,
207 " set interface context-sensitive-arguments (or ? for help)\n"
208 " set protocol context-sensitive-arguments (or ? for help)\n"
209 " set service [ name <serviceName> ] [ order new-order ] [ rank ("" | First | Last | Never | Scoped ) [temp] ] [ id <serviceID> ]\n"
210 " set set [ name setName ] | [ current ] [ id <setID> ]" },
212 { "show", 1, 2, do_net_show
, 9, 0,
214 " show interface [ <interfaceName> | <interface#> ]\n"
216 " show protocol [ <protocolType> ]\n"
217 " show services [ all ]\n"
218 " show service [ <serviceName> | <service#> ]\n"
220 " show set [ <setName> | <set#> ]" },
222 { "migrate", 2, 5, do_net_migrate
, 10, 0,
223 " migrate perform <old-configuration> <new-configuration> [<current-configuration>]\n"
224 " migrate validate <configuration> <expected-configuration>"},
226 { "clean", 0, 0, do_net_clean
, 11, 0,
227 " clean : clean the network configuration" },
229 { "update", 0, 0, do_net_update
, 11, 0,
230 " update : update the network configuration" },
232 { "upgrade", 0, 1, do_net_upgrade
, 11, 0,
233 " upgrade [ <plist-name> ] : upgrade the network configuration" },
235 { "snapshot", 0, 0, do_net_snapshot
, 99, 2,
240 const int nCommands_net
= (sizeof(commands_net
)/sizeof(cmdInfo
));
244 const cmdInfo commands_prefs
[] = {
245 /* cmd minArgs maxArgs func group ctype */
248 { "help", 0, 0, do_help
, 0, 0,
249 " help : list available commands" },
251 { "f.read", 1, 1, do_readFile
, 0, 0,
252 " f.read file : process commands from file" },
254 { "quit", 0, 1, do_prefs_quit
, 0, 0,
255 " quit [!] : quit" },
257 { "q", 0, 1, do_prefs_quit
, 0, -1,
260 { "exit", 0, 1, do_prefs_quit
, 0, -1,
263 /* local dictionary manipulation commands */
265 { "d.init", 0, 0, do_dictInit
, 1, 0,
266 " d.init : initialize (empty) dictionary" },
268 { "d.show", 0, 0, do_dictShow
, 1, 0,
269 " d.show : show dictionary contents" },
271 { "d.add", 2, 101, do_dictSetKey
, 1, 0,
272 " d.add key [*#?%] val [v2 ...] : add information to dictionary\n"
273 " (*=array, #=number, ?=boolean, %=hex data)" },
275 { "d.remove", 1, 1, do_dictRemoveKey
, 1, 0,
276 " d.remove key : remove key from dictionary" },
278 /* data store manipulation commands */
280 { "open", 0, 1, do_prefs_open
, 2, 1,
281 " open [\"prefsID\"] : open a \"preferences\" session" },
283 { "lock", 0, 1, do_prefs_lock
, 3, 1,
284 " lock [wait] : locks write access to preferences" },
286 { "commit", 0, 0, do_prefs_commit
, 2, 0,
287 " commit : commit any changes" },
289 { "apply", 0, 0, do_prefs_apply
, 2, 0,
290 " apply : apply any changes" },
292 { "unlock", 0, 0, do_prefs_unlock
, 3, 1,
293 " unlock : unlocks write access to preferences" },
295 { "close", 0, 1, do_prefs_close
, 2, 1,
296 " close [!] : close current \"preference\" session" },
298 { "synchronize",0, 1, do_prefs_synchronize
, 2, 0,
299 " synchronize : synchronize a \"preferences\" session" },
301 { "list", 0, 1, do_prefs_list
, 4, 0,
302 " list [path] : list preference paths" },
304 { "get", 1, 1, do_prefs_get
, 4, 0,
305 " get path : get dict from preferences w/path" },
307 { "set", 1, 2, do_prefs_set
, 4, 0,
308 " set path : set path in preferences w/current dict\n"
309 " set path link : set path in preferences w/link" },
311 { "remove", 1, 1, do_prefs_remove
, 4, 0,
312 " remove path : remove path from preferences" }
315 const int nCommands_prefs
= (sizeof(commands_prefs
)/sizeof(cmdInfo
));
318 __private_extern__ cmdInfo
*commands
= NULL
;
319 __private_extern__
int nCommands
= 0;
320 __private_extern__ Boolean enablePrivateAPI
= FALSE
;
321 __private_extern__ Boolean termRequested
= FALSE
;
326 do_command(int argc
, char **argv
)
331 for (i
= 0; i
< nCommands
; i
++) {
332 if ((commands
[i
].ctype
> 1) && !enablePrivateAPI
) {
333 continue; /* if "private" API and access has not been enabled */
336 if (strcasecmp(cmd
, commands
[i
].cmd
) == 0) {
339 if (argc
< commands
[i
].minArgs
) {
340 SCPrint(TRUE
, stdout
, CFSTR("%s: too few arguments\n"), cmd
);
342 } else if (argc
> commands
[i
].maxArgs
) {
343 SCPrint(TRUE
, stdout
, CFSTR("%s: too many arguments\n"), cmd
);
346 (*commands
[i
].func
)(argc
, argv
);
351 SCPrint(TRUE
, stdout
, CFSTR("%s: unknown, type \"help\" for command info\n"), cmd
);
358 do_help(int argc
, char **argv
)
362 int g
= -1; /* current group */
365 SCPrint(TRUE
, stdout
, CFSTR("\nAvailable commands:\n"));
366 for (i
= 0; i
< nCommands
; i
++) {
367 if (commands
[i
].ctype
< 0) {
368 continue; /* if "hidden" */
371 if ((commands
[i
].ctype
> 0) && !enablePrivateAPI
) {
372 continue; /* if "private" API and access has not been enabled */
375 /* check if this is a new command group */
376 if (g
!= commands
[i
].group
) {
377 SCPrint(TRUE
, stdout
, CFSTR("\n"));
378 g
= commands
[i
].group
;
381 /* display the command */
382 SCPrint(TRUE
, stdout
, CFSTR("%s\n"), commands
[i
].usage
);
384 SCPrint(TRUE
, stdout
, CFSTR("\n"));
392 do_readFile(int argc
, char **argv
)
397 /* allocate command input stream */
398 src
= (InputRef
)CFAllocatorAllocate(NULL
, sizeof(Input
), 0);
401 src
->fp
= fopen(argv
[0], "r");
403 if (src
->fp
== NULL
) {
404 SCPrint(TRUE
, stdout
, CFSTR("f.read: could not open file (%s).\n"), strerror(errno
));
405 CFAllocatorDeallocate(NULL
, src
);
409 /* open file, increase nesting level */
410 SCPrint(TRUE
, stdout
, CFSTR("f.read: reading file (%s).\n"), argv
[0]);
416 ok
= process_line(src
);
422 (void)fclose(src
->fp
);
423 CFAllocatorDeallocate(NULL
, src
);
431 do_quit(int argc
, char **argv
)
435 termRequested
= TRUE
;