24283ee945919db22d8ca593813632021860ef3d
[openafs.git] / src / ubik / uinit.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
10 #include <afsconfig.h>
11 #include <afs/param.h>
12
13
14 #include <afs/stds.h>
15 #ifdef AFS_NT40_ENV
16 #include <fcntl.h>
17 #include <winsock2.h>
18 #else
19 #include <sys/types.h>
20 #include <sys/file.h>
21 #include <netdb.h>
22 #include <netinet/in.h>
23 #endif /* AFS_NT40_ENV */
24 #include <sys/stat.h>
25 #ifdef AFS_AIX_ENV
26 #include <sys/statfs.h>
27 #endif
28
29 #include <string.h>
30
31 #include <afs/dirpath.h>
32 #include <errno.h>
33 #include <lock.h>
34 #include <rx/xdr.h>
35 #include <rx/rx.h>
36 #include <rx/rx_globals.h>
37 #include <afs/auth.h>
38 #include <afs/cellconfig.h>
39 #include <afs/keys.h>
40 #include <ubik.h>
41 #include <afs/afsint.h>
42 #include <afs/cmd.h>
43
44 /*!
45  * \brief Get the appropriate type of ubik client structure out from the system.
46  */
47 afs_int32
48 ugen_ClientInit(int noAuthFlag, const char *confDir, char *cellName, afs_int32 sauth,
49                struct ubik_client **uclientp, 
50                int (*secproc) (struct rx_securityClass *, afs_int32),
51                char *funcName, afs_int32 gen_rxkad_level, 
52                afs_int32 maxservers, char *serviceid, afs_int32 deadtime,
53                afs_uint32 server, afs_uint32 port, afs_int32 usrvid)
54 {
55     afs_int32 code, secFlags, i;
56     afs_int32 scIndex;
57     struct afsconf_cell info;
58     struct afsconf_dir *tdir;
59     struct rx_securityClass *sc;
60     /* This must change if VLDB_MAXSERVERS becomes larger than MAXSERVERS */
61     static struct rx_connection *serverconns[MAXSERVERS];
62     const char *confdir;
63
64     code = rx_Init(0);
65     if (code) {
66         fprintf(stderr, "%s: could not initialize rx.\n", funcName);
67         return code;
68     }
69     rx_SetRxDeadTime(deadtime);
70
71     secFlags = AFSCONF_SECOPTS_FALLBACK_NULL;
72     if (sauth) {
73         secFlags |= AFSCONF_SECOPTS_LOCALAUTH;
74         confdir = AFSDIR_SERVER_ETC_DIRPATH;
75     } else {
76         confdir = AFSDIR_CLIENT_ETC_DIRPATH;
77     }
78
79     tdir = afsconf_Open(confdir);
80     if (!tdir) {
81         fprintf(stderr,
82                 "%s: Could not process files in configuration directory (%s).\n",
83                 funcName, confdir);
84         return -1;
85     }
86     code = afsconf_GetCellInfo(tdir, tdir->cellName, serviceid, &info);
87     if (code) {
88         afsconf_Close(tdir);
89         fprintf(stderr, "%s: can't find cell %s's hosts in %s/%s\n",
90                 funcName, cellName, confdir, AFSDIR_CELLSERVDB_FILE);
91         return -1;
92     }
93     code = afsconf_PickClientSecObj(tdir, secFlags, &info, tdir->cellName, &sc,
94                                     &scIndex, NULL);
95     if (code) {
96         fprintf(stderr, "%s: can't create client security object", funcName);
97         return -1;
98     }
99     if (scIndex == RX_SECIDX_NULL) {
100         fprintf(stderr,
101                 "%s: Could not get afs tokens, running unauthenticated.\n",
102                 funcName);
103     }
104
105     afsconf_Close(tdir);
106
107     if (secproc)        /* tell UV module about default authentication */
108         (*secproc) (sc, scIndex);
109     if (server) {
110         serverconns[0] = rx_NewConnection(server, port,
111                                           usrvid, sc, scIndex);
112     } else {
113         if (info.numServers > maxservers) {
114             fprintf(stderr,
115                     "%s: info.numServers=%d (> maxservers=%d)\n",
116                     funcName, info.numServers, maxservers);
117             return -1;
118         }
119         for (i = 0; i < info.numServers; i++) {
120             serverconns[i] =
121                 rx_NewConnection(info.hostAddr[i].sin_addr.s_addr,
122                                  info.hostAddr[i].sin_port, usrvid,
123                                  sc, scIndex);
124         }
125     }
126     /* Are we just setting up connections, or is this really ubik stuff? */
127     if (uclientp) {
128         *uclientp = 0;
129         code = ubik_ClientInit(serverconns, uclientp);
130         if (code) {
131             fprintf(stderr, "%s: ubik client init failed.\n", funcName);
132             return code;
133         }
134     }
135     return 0;
136 }
137
138