2e2d0295c2744107af866d2a4de6339df7451115
[openafs.git] / src / libadmin / samples / cm_server_prefs.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  *
9  * Portions Copyright (c) 2003 Apple Computer, Inc.
10  */
11
12 /*
13  * This file contains sample code for the client admin interface 
14  */
15
16 #include <afsconfig.h>
17 #include <afs/param.h>
18
19 #include <roken.h>
20
21 #ifdef AFS_NT40_ENV
22 #include <pthread.h>
23 #endif
24
25 #include <rx/rx.h>
26 #include <rx/rxstat.h>
27
28 #include <afs/afs_Admin.h>
29 #include <afs/afs_clientAdmin.h>
30 #include <afs/afs_utilAdmin.h>
31
32 #ifdef AFS_DARWIN_ENV
33 pthread_mutex_t des_init_mutex = PTHREAD_MUTEX_INITIALIZER;
34 pthread_mutex_t des_random_mutex = PTHREAD_MUTEX_INITIALIZER;
35 pthread_mutex_t rxkad_random_mutex = PTHREAD_MUTEX_INITIALIZER;
36 #endif /* AFS_DARWIN_ENV */
37
38 void
39 Usage(void)
40 {
41     fprintf(stderr, "Usage: cm_server_prefs <host> <port>\n");
42     exit(1);
43 }
44
45 void
46 ParseArgs(int argc, char *argv[], char **srvrName, long *srvrPort)
47 {
48     char **argp = argv;
49
50     if (!*(++argp))
51         Usage();
52     *srvrName = *(argp++);
53     if (!*(argp))
54         Usage();
55     *srvrPort = strtol(*(argp++), NULL, 0);
56     if (*srvrPort <= 0 || *srvrPort >= 65536)
57         Usage();
58     if (*(argp))
59         Usage();
60 }
61
62 int
63 main(int argc, char *argv[])
64 {
65     int rc;
66     afs_status_t st = 0;
67     struct rx_connection *conn;
68     char *srvrName;
69     long srvrPort;
70     void *cellHandle;
71     afs_CMServerPref_t prefs;
72     void *iterator;
73     afs_uint32 taddr;
74
75     ParseArgs(argc, argv, &srvrName, &srvrPort);
76
77     rc = afsclient_Init(&st);
78     if (!rc) {
79         fprintf(stderr, "afsclient_Init, status %d\n", st);
80         exit(1);
81     }
82
83     rc = afsclient_NullCellOpen(&cellHandle, &st);
84     if (!rc) {
85         fprintf(stderr, "afsclient_NullCellOpen, status %d\n", st);
86         exit(1);
87     }
88
89     rc = afsclient_CMStatOpenPort(cellHandle, srvrName, srvrPort, &conn, &st);
90     if (!rc) {
91         fprintf(stderr, "afsclient_CMStatOpenPort, status %d\n", st);
92         exit(1);
93     }
94
95     rc = util_CMGetServerPrefsBegin(conn, &iterator, &st);
96     if (!rc) {
97         fprintf(stderr, "util_CMGetServerPrefsBegin, status %d\n", st);
98         exit(1);
99     }
100
101     printf("\n");
102     while (util_CMGetServerPrefsNext(iterator, &prefs, &st)) {
103         taddr = prefs.ipAddr;
104         printf("%d.%d.%d.%d\t\t\t%d\n", (taddr >> 24) & 0xff,
105                (taddr >> 16) & 0xff, (taddr >> 8) & 0xff, taddr & 0xff,
106                prefs.ipRank);
107     }
108     if (st != ADMITERATORDONE) {
109         fprintf(stderr, "util_CMGetServerPrefsNext, status %d\n", st);
110         exit(1);
111     }
112     printf("\n");
113
114     rc = util_CMGetServerPrefsDone(iterator, &st);
115     if (!rc) {
116         fprintf(stderr, "util_CMGetServerPrefsDone, status %d\n", st);
117         exit(1);
118     }
119
120     rc = afsclient_CMStatClose(conn, &st);
121     if (!rc) {
122         fprintf(stderr, "afsclient_CMStatClose, status %d\n", st);
123         exit(1);
124     }
125
126     rc = afsclient_CellClose(cellHandle, &st);
127     if (!rc) {
128         fprintf(stderr, "afsclient_CellClose, status %d\n", st);
129         exit(1);
130     }
131
132     exit(0);
133 }