Remove DUX/OSF code
[openafs.git] / src / sys / rmtsysc.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 /*
11  * This module (residing in lib/afs/librmtsys.a) implements the client side of
12  * the rpc version (via rx) of non-standard system calls. Currently only rpc
13  * calls of setpag, and pioctl are supported.
14  */
15 #include <afsconfig.h>
16 #include <afs/param.h>
17
18 #include <roken.h>
19
20 #include <limits.h>
21
22 #include <afs/vice.h>
23 #include <rx/xdr.h>
24
25 #include "rmtsys.h"
26 #include "sys_prototypes.h"
27
28
29 #define NOPAG       0xffffffff  /* Also defined in afs/afs.h */
30 static afs_int32 hostAddr = 0;
31 static int hostAddrLookup = 0;
32 char *afs_server = 0, server_name[128];
33 static afs_int32 SetClientCreds(struct clientcred *creds, afs_uint32 * groups);
34 int afs_get_pag_from_groups(afs_uint32 g0, afs_uint32 g1);
35 void afs_get_groups_from_pag(afs_uint32 pag, afs_uint32 * g0p, afs_uint32 * g1p);
36
37 /* Picks up the name of the remote afs client host where the rmtsys
38  * daemon resides. Since the clients may be diskless and/or readonly
39  * ones we felt it's better to rely on an shell environment
40  * (AFSSERVER) for the host name first. If that is not set, the
41  * $HOME/.AFSSERVER file is checked, otherwise the "/.AFSSERVER" is
42  * used.
43  */
44 afs_int32
45 GetAfsServerAddr(char *syscall)
46 {
47     struct hostent *th;
48
49     if (hostAddrLookup) {
50         /* Take advantage of caching and assume that the remote host
51          * address won't change during a single program's invocation.
52          */
53         return hostAddr;
54     }
55     hostAddrLookup = 1;
56
57     if (!(afs_server = getenv("AFSSERVER"))) {
58         char *home_dir;
59         FILE *fp;
60         int len = 0;
61
62         if (!(home_dir = getenv("HOME"))) {
63             /* Our last chance is the "/.AFSSERVER" file */
64             fp = fopen("/.AFSSERVER", "r");
65             if (fp == 0) {
66                 return 0;
67             }
68         } else {
69             char *pathname;
70
71             len = asprintf(&pathname, "%s/%s", home_dir, ".AFSSERVER");
72             if (len < 0 || pathname == NULL)
73                 return 0;
74             fp = fopen(pathname, "r");
75             free(pathname);
76
77             if (fp == 0) {
78                 /* Our last chance is the "/.AFSSERVER" file */
79                 fp = fopen("/.AFSSERVER", "r");
80                 if (fp == 0) {
81                     return 0;
82                 }
83             }
84         }
85         if (fgets(server_name, 128, fp) != NULL)
86             len = strlen(server_name);
87         fclose(fp);
88         if (len == 0) {
89             return 0;
90         }
91         if (server_name[len - 1] == '\n') {
92             server_name[len - 1] = 0;
93         }
94         afs_server = server_name;
95     }
96     th = gethostbyname(afs_server);
97     if (!th) {
98         printf("host %s not found; %s call aborted\n", afs_server, syscall);
99         return 0;
100     }
101     memcpy(&hostAddr, th->h_addr, sizeof(hostAddr));
102     return hostAddr;
103 }
104
105
106 /* Does the actual RX connection to the afs server */
107 struct rx_connection *
108 rx_connection(afs_int32 * errorcode, char *syscall)
109 {
110     struct rx_connection *conn;
111     struct rx_securityClass *null_securityObject;
112     afs_int32 host;
113
114     if (!(host = GetAfsServerAddr(syscall))) {
115         *errorcode = -1;
116         return (struct rx_connection *)0;
117     }
118     *errorcode = rx_Init(0);
119     if (*errorcode) {
120         printf("Rx initialize failed \n");
121         return (struct rx_connection *)0;
122     }
123     null_securityObject = rxnull_NewClientSecurityObject();
124     conn =
125         rx_NewConnection(host, htons(AFSCONF_RMTSYSPORT), RMTSYS_SERVICEID,
126                          null_securityObject, RX_SECIDX_NULL);
127     if (!conn) {
128         printf("Unable to make a new connection\n");
129         *errorcode = -1;
130         return (struct rx_connection *)0;
131     }
132     return conn;
133 }
134
135
136 /* WARNING: The calling program (i.e. klog) MUST be suid-root since we need to
137  * do a setgroups(2) call with the new pag.... */
138 int
139 setpag(void)
140 {
141     struct rx_connection *conn;
142     clientcred creds;
143     afs_int32 errorcode, errornumber, newpag, ngroups, j;
144     afs_uint32 groups[NGROUPS_MAX];
145
146     if (!(conn = rx_connection(&errorcode, "setpag"))) {
147         /* Remote call can't be performed for some reason.
148          * Try the local 'setpag' system call ... */
149         errorcode = lsetpag();
150         return errorcode;
151     }
152     ngroups = SetClientCreds(&creds, groups);
153     errorcode = RMTSYS_SetPag(conn, &creds, &newpag, &errornumber);
154     if (errornumber) {
155         errno = errornumber;
156         errorcode = -1;
157         printf("Warning: Remote setpag to %s has failed (err=%d)...\n",
158                afs_server, errno);
159     }
160     if (errorcode) {
161         return errorcode;
162     }
163     if (afs_get_pag_from_groups(groups[0], groups[1]) == NOPAG) {
164         /* we will have to shift grouplist to make room for pag */
165         if (ngroups + 2 > NGROUPS_MAX) {
166             /* this is what the real setpag returns */
167             errno = E2BIG;
168             return -1;
169         }
170         for (j = ngroups - 1; j >= 0; j--) {
171             groups[j + 2] = groups[j];
172         }
173         ngroups += 2;
174     }
175     afs_get_groups_from_pag(newpag, &groups[0], &groups[1]);
176     if (setgroups(ngroups, groups) == -1) {
177         return -1;
178     }
179 #ifdef  AFS_HPUX_ENV
180     errorcode = setuid(getuid());
181 #else
182     errorcode = setreuid(-1, getuid());
183 #endif /* AFS_HPUX_ENV */
184     return errorcode;
185 }
186
187
188 /* Remote pioctl(2) client routine */
189 int
190 pioctl(char *path, afs_int32 cmd, struct ViceIoctl *data, afs_int32 follow)
191 {
192     struct rx_connection *conn;
193     clientcred creds;
194     afs_int32 errorcode, errornumber, ins = data->in_size;
195     afs_uint32 groups[NGROUPS_MAX];
196     rmtbulk InData, OutData;
197     char pathname[256], *pathp = pathname, *inbuffer;
198     if (!(conn = rx_connection(&errorcode, "pioctl"))) {
199         /* Remote call can't be performed for some reason.
200          * Try the local 'pioctl' system call ... */
201         errorcode = lpioctl(path, cmd, data, follow);
202         return errorcode;
203     }
204     (void)SetClientCreds(&creds, groups);
205     if (!(inbuffer = malloc(ins)))
206         return (-1);            /* helpless here */
207     if (data->in_size)
208         memcpy(inbuffer, data->in, data->in_size);
209     InData.rmtbulk_len = data->in_size;
210     InData.rmtbulk_val = inbuffer;
211     inparam_conversion(cmd, InData.rmtbulk_val, 0);
212
213     OutData.rmtbulk_len = MAXBUFFERLEN * sizeof(*OutData.rmtbulk_val);
214     OutData.rmtbulk_val = malloc(OutData.rmtbulk_len);
215     if (!OutData.rmtbulk_val) {
216         free(inbuffer);
217         return -1;
218     }
219
220     /* We always need to pass absolute pathnames to the remote pioctl since we
221      * lose the current directory value when doing an rpc call. Below we
222      * prepend the current absolute path directory, if the name is relative */
223     if (path) {
224         if (*path != '/') {
225             /* assuming relative path name */
226             if (getcwd(pathname, 256) == NULL) {
227                 free(inbuffer);
228                 printf("getwd failed\n");
229                 return -1;
230             }
231             strcpy(pathname + strlen(pathname), "/");
232             strcat(pathname, path);
233         } else {
234             strcpy(pathname, path);
235         }
236     } else {
237         /* Special meaning for a "NULL" pathname since xdr_string hates nil
238          * pointers, at least on non-RTS; of course the proper solution would
239          * be to change the interface declartion. */
240         strcpy(pathname, NIL_PATHP);
241     }
242     errorcode =
243         RMTSYS_Pioctl(conn, &creds, pathp, cmd, follow, &InData, &OutData,
244                       &errornumber);
245     if (errornumber) {
246         errno = errornumber;
247         errorcode = -1;         /* Necessary since errorcode is 0 on
248                                  * standard remote pioctl errors */
249         if (errno != EDOM && errno != EACCES)
250             printf("Warning: Remote pioctl to %s has failed (err=%d)...\n",
251                    afs_server, errno);
252     }
253     if (!errorcode) {
254         /* Do the conversions back to the host order; store the results back
255          * on the same buffer */
256         if (data->out_size < OutData.rmtbulk_len) {
257             errno = EINVAL;
258             errorcode = -1;
259         } else {
260             memcpy(data->out, OutData.rmtbulk_val, data->out_size);
261             outparam_conversion(cmd, data->out, 1);
262         }
263     }
264     free(OutData.rmtbulk_val);
265     free(inbuffer);
266     return errorcode;
267 }
268
269
270 int
271 afs_get_pag_from_groups(afs_uint32 g0, afs_uint32 g1)
272 {
273     afs_uint32 h, l, result;
274
275     g0 -= 0x3f00;
276     g1 -= 0x3f00;
277     if (g0 < 0xc000 && g1 < 0xc000) {
278         l = ((g0 & 0x3fff) << 14) | (g1 & 0x3fff);
279         h = (g0 >> 14);
280         h = (g1 >> 14) + h + h + h;
281         result = ((h << 28) | l);
282         /* Additional testing */
283         if (((result >> 24) & 0xff) == 'A')
284             return result;
285         else
286             return NOPAG;
287     }
288     return NOPAG;
289 }
290
291 void
292 afs_get_groups_from_pag(afs_uint32 pag, afs_uint32 * g0p, afs_uint32 * g1p)
293 {
294     unsigned short g0, g1;
295
296     pag &= 0x7fffffff;
297     g0 = 0x3fff & (pag >> 14);
298     g1 = 0x3fff & pag;
299     g0 |= ((pag >> 28) / 3) << 14;
300     g1 |= ((pag >> 28) % 3) << 14;
301     *g0p = g0 + 0x3f00;
302     *g1p = g1 + 0x3f00;
303 }
304
305
306 static afs_int32
307 SetClientCreds(struct clientcred *creds, afs_uint32 * groups)
308 {
309     afs_int32 ngroups;
310
311     creds->uid = getuid();
312     groups[0] = groups[1] = 0;
313     ngroups = getgroups(NGROUPS_MAX, groups);
314     creds->group0 = groups[0];
315     creds->group1 = groups[1];
316     return ngroups;
317 }