source: mainline/uspace/app/dnscfg/dnscfg.c@ 98b1d30

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 98b1d30 was 1d6dd2a, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 8 years ago

Remove unnecessary includes from <stdio.h>.

  • Property mode set to 100644
File size: 3.6 KB
Line 
1/*
2 * Copyright (c) 2013 Jiri Svoboda
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup dnscfg
30 * @{
31 */
32/** @file DNS configuration utility.
33 *
34 * Controls the DNS resolution server (@c dnsrsrv).
35 */
36
37#include <errno.h>
38#include <inet/addr.h>
39#include <inet/dnsr.h>
40#include <ipc/services.h>
41#include <loc.h>
42#include <stdio.h>
43#include <stdlib.h>
44#include <stdint.h>
45#include <str.h>
46#include <str_error.h>
47
48#define NAME "dnscfg"
49
50static void print_syntax(void)
51{
52 printf("Syntax:\n");
53 printf("\t%s get-ns\n", NAME);
54 printf("\t%s set-ns <server-addr>\n", NAME);
55 printf("\t%s unset-ns\n", NAME);
56}
57
58static errno_t dnscfg_set_ns(int argc, char *argv[])
59{
60 if (argc < 1) {
61 printf("%s: Missing arguments.\n", NAME);
62 print_syntax();
63 return EINVAL;
64 }
65
66 if (argc > 1) {
67 printf("%s: Too many arguments.\n", NAME);
68 print_syntax();
69 return EINVAL;
70 }
71
72 char *srv_addr = argv[0];
73
74 inet_addr_t addr;
75 errno_t rc = inet_addr_parse(srv_addr, &addr, NULL);
76
77 if (rc != EOK) {
78 printf("%s: Invalid address format '%s'.\n", NAME, srv_addr);
79 return rc;
80 }
81
82 rc = dnsr_set_srvaddr(&addr);
83 if (rc != EOK) {
84 printf("%s: Failed setting nameserver address '%s' (%s)\n",
85 NAME, srv_addr, str_error(rc));
86 return rc;
87 }
88
89 return EOK;
90}
91
92static errno_t dnscfg_unset_ns(void)
93{
94 inet_addr_t addr;
95 inet_addr_any(&addr);
96
97 errno_t rc = dnsr_set_srvaddr(&addr);
98 if (rc != EOK) {
99 printf("%s: Failed unsetting server address (%s)\n",
100 NAME, str_error(rc));
101 return rc;
102 }
103
104 return EOK;
105}
106
107static errno_t dnscfg_print(void)
108{
109 inet_addr_t addr;
110 errno_t rc = dnsr_get_srvaddr(&addr);
111 if (rc != EOK) {
112 printf("%s: Failed getting DNS server address.\n", NAME);
113 return rc;
114 }
115
116 char *addr_str;
117 rc = inet_addr_format(&addr, &addr_str);
118 if (rc != EOK) {
119 printf("%s: Out of memory.\n", NAME);
120 return rc;
121 }
122
123 printf("Nameserver: %s\n", addr_str);
124 free(addr_str);
125 return EOK;
126}
127
128int main(int argc, char *argv[])
129{
130 if ((argc < 2) || (str_cmp(argv[1], "get-ns") == 0))
131 return dnscfg_print();
132 else if (str_cmp(argv[1], "set-ns") == 0)
133 return dnscfg_set_ns(argc - 2, argv + 2);
134 else if (str_cmp(argv[1], "unset-ns") == 0)
135 return dnscfg_unset_ns();
136 else {
137 printf("%s: Unknown command '%s'.\n", NAME, argv[1]);
138 print_syntax();
139 return 1;
140 }
141
142 return 0;
143}
144
145/** @}
146 */
Note: See TracBrowser for help on using the repository browser.