summaryrefslogtreecommitdiffstats
path: root/xpa/remote.c
blob: 1b1689ce586d4f664e12956c968eb72309de8216 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
/*
 *	Copyright (c) 1999-2003 Smithsonian Astrophysical Observatory
 */

/*
 *
 * remote.c -- xpa access control list management
 *
 */

#include <xpap.h>

/*
 *----------------------------------------------------------------------------
 *
 *
 *			Private Routines
 *
 *
 *----------------------------------------------------------------------------
 */

/*
 *----------------------------------------------------------------------------
 *
 *
 *		Semi-Public Routines (used by command.c)
 *
 *
 *----------------------------------------------------------------------------
 */

/*
 *----------------------------------------------------------------------------
 *
 * Routine:	XPAReceiveRemote
 *
 * Purpose:	establish remote connection with specified acls
 *
 * Returns:	xpa callback error codes
 *
 *----------------------------------------------------------------------------
 */
#ifdef ANSI_FUNC
int 
XPAReceiveRemote (void *client_data, void *call_data, char *paramlist,
	       char *buf, size_t len)
#else
int XPAReceiveRemote(client_data, call_data, paramlist, buf, len)
     void *client_data;
     void *call_data;
     char *paramlist;
     char *buf;
     size_t len;
#endif
{
  XPA xpa = (XPA)call_data;
  XPA cxpa;
  char *mode=NULL;
  char host[SZ_LINE];
  char acl[SZ_LINE];
  char which[SZ_LINE];
  char tbuf[SZ_LINE];
  int lp=0;

  /* make sure we are using inet sockets */
  if( XPAMtype() != XPA_INET ){
    snprintf(tbuf, SZ_LINE, "remote requires that XPA_METHOD be 'inet'\n");
    XPAError(xpa, tbuf);
    return(-1);
  }

  /* see if we are connecting to a particular host */
  if( paramlist && *paramlist ){
    cxpa = xpa;
    /* arg1: host */
    if( !word(paramlist, host, &lp) ){
      goto error;
    }
    /* arg2: acl (optional) or -proxy */
    if( !word(paramlist, acl, &lp) ){
      strcpy(acl, "+");
    }
    /* arg3: -proxy to set up proxy processing
       or    acl (if other word was -proxy) */
    else{
      if( !strcmp(acl, "-proxy") ){
	mode="proxy=true";
	if( !word(paramlist, acl, &lp) ){
	  strcpy(acl, "+");
	}
      }
      else if( word(paramlist, which, &lp) ){
	if( !strcmp(which, "-proxy") ){
	  mode="proxy=true";
	}
	else{
	  goto error;
	}
      }
    }
    /* make the call */
    if( XPARemote(cxpa, host, acl, mode) >= 0 ){
      return(0);
    }
    else{
      snprintf(tbuf, SZ_LINE, "remote xpans %s failed to process %s\n",
	       host, xpa->name);
      XPAError(xpa, tbuf);
      return(-1);
    }
  }
  else{
    goto error;
  }

error:
  XPAError(xpa, "syntax error: -remote hostname:port [acl] [-proxy]\n");
  return(-1);
}

/*
 *----------------------------------------------------------------------------
 *
 * Routine:	XPASendRemote
 *
 * Purpose:	return the list of remotes for this access point
 *
 * Returns:	0 for success, -1 for failure
 *
 *----------------------------------------------------------------------------
 */
#ifdef ANSI_FUNC
int 
XPASendRemote (void *client_data, void *call_data, char *paramlist,
	    char **buf, size_t *len)
#else
int XPASendRemote(client_data, call_data, paramlist, buf, len)
     void *client_data;
     void *call_data;
     char *paramlist;
     char **buf;
     size_t *len;
#endif
{
  XPA xpa = (XPA)call_data;
  NS ns;
  int got = 0;
  char tbuf[SZ_LINE];

  /* list out the remotes */
  for(ns=xpa->nshead; ns!=NULL; ns=ns->next){
    /* skip default ns */
    if( ns->host == NULL ) continue;
    snprintf(tbuf, SZ_LINE, "%s %x:%d\n", ns->host, ns->ip, ns->port);
    send(xpa_datafd(xpa), tbuf, strlen(tbuf), 0);
    got++;
  }
  if( got == 0 ){
    send(xpa_datafd(xpa), "\n", 1, 0);
  }
  return(0);
}

/*
 *----------------------------------------------------------------------------
 *
 * Routine:	XPARemote
 *
 * Purpose:	register the specified XPA (or all XPAs) with the named remote
 *		name server using the specified acl
 *
 * Returns:	none
 *
 *----------------------------------------------------------------------------
 */
#ifdef ANSI_FUNC
int
XPARemote (XPA xpa, char *host, char *acl, char *mode)
#else
int XPARemote(xpa, host, acl, mode)
     XPA xpa;
     char *host;
     char *acl;
     char *mode;
#endif
{
  int got=0;
  char remote[SZ_LINE];
  char mach[SZ_LINE];
  char lbuf[SZ_LINE];
  char *ind;
  XPA cur;

  /* might have to add the "port" to the host to get remote */
  strncpy(remote, host, SZ_LINE-1);
  remote[SZ_LINE-1] = '\0';
  if( (ind=strchr(remote, ':')) == NULL ){
    strcat(remote, ":$port");
  }

  /* if no acl is specified, make it '+' */
  if( (acl == NULL) || (*acl == '\0') ){
    acl = "+";
  }

  /* get machine name by removing port suffix */
  strcpy(mach, remote);
  if( (ind=strchr(mach, ':')) != NULL ){
    *ind = '\0';
  }
  else{
    return(-1);
  }

  /* either process the specified xpa, or do all of them */
  if( xpa ){
    cur = xpa;
    /* acl="-" => delete, else add */
    if( strcmp(acl, "-") ){
      got=XPANSAdd(cur, remote, mode);
    }
    else{
      got=XPANSDel(cur, remote, mode);
    }
    switch(got){
    /* error condition */
    case -1:
      return(-1);
    /* OK */
    case 0:
      snprintf(lbuf, SZ_LINE, "%s:%s %s %s",
	       cur->xclass, cur->name, mach, acl);
      XPAAclEdit(lbuf);
      break;
    /* entry already exists (OK) */
    case 1:
      break;
    }
  }
  else{
    for(cur=XPAListHead(); cur!=NULL; cur=cur->next){
      /* acl="-" => delete, else add */
      if( strcmp(acl, "-") ){
	got=XPANSAdd(cur, remote, mode);
      }
      else{
	got=XPANSDel(cur, remote, mode);
      }
      switch(got){
      /* error condition */
      case -1:
	return(-1);
      /* OK */
      case 0:
	snprintf(lbuf, SZ_LINE, "%s:%s %s %s",
		 cur->xclass, cur->name, mach, acl);
	XPAAclEdit(lbuf);
	break;
      /* entry already exists (OK) */
      case 1:
	break;
      }
    }
  }

  /* return OK  */
  return(0);
}

/*
 *----------------------------------------------------------------------------
 *
 *
 *			Public Routines
 *
 *
 *----------------------------------------------------------------------------
 */