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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
|
#include "vxi11.h"
#include "globals.h"
#include "gpib.h"
#include "parser.h"
#include <stdio.h>
#include <rpc/rpc.h>
#include <stdbool.h>
#include <sys/socket.h>
#include <netinet/in.h>
#define DEBUG
#ifdef DEBUG
#include <stdlib.h>
#endif
#define SIZEOFARRAY(a) (sizeof(a) / sizeof(a[0]))
#define ERR_SYNTAXERROR 1
#define ERR_DEVICENOTACCESSIBLE 3
#define ERR_INVALIDLINKINDENTIFIER 4
#define ERR_PARAMETERERROR 5
#define ERR_CHANNELNOTESTABLISHED 6
#define ERR_OPERATIONNOTSUPPORTED 8
#define ERR_OUTOFRESOURCES 9
#define ERR_DEVICELOCKEDBYANOTHERLINK 11
#define ERR_NOLOCKHELDBYTHISLINK 12
#define ERR_IOTIMEOUT 15
#define ERR_IOERROR 17
#define ERR_INVALIDADDRESS 21
#define ERR_ABORT 23
#define ERR_CHANNELALREADYESTABLISHED 29
static CLIENT* intclient = NULL;
static bool intenabled = false;
static char* inthandler = NULL;
typedef struct {
} ActiveLink;
static ActiveLink* links[MAX_SESSIONS] = { NULL };
static bool isValidLink(int linkid) {
return links[linkid] != NULL;
}
static bool isLocked() {
return globals.VxiLocks.locked_network_server != NO_SERVER_LOCKED;
}
static bool haveLock(int lid) {
return globals.VxiLocks.locked_network_server == lid;
}
#define FLAG_WAITLOCK 1
// todo
static bool waitForLock(Device_Flags flags, long timeout) {
if (!(flags & FLAG_WAITLOCK))
return false;
return false;
}
static bool waitforio(long timeout) {
if (!globals.VxiLocks.command_in_progress)
return true;
while (timeout < 0 && !globals.VxiLocks.command_in_progress) {
usleep(250);
timeout -= 250;
}
if (timeout > 0)
return true;
#ifdef DEBUG
printf("timeout waiting for command to finish\n");
#endif
return false;
}
static void lock(int lid) {
globals.VxiLocks.locked_network_server = lid;
}
static void unlock() {
globals.VxiLocks.locked_network_server = NO_SERVER_LOCKED;
}
Device_Error *
device_abort_1_svc(Device_Link *argp, struct svc_req *rqstp) {
static Device_Error result;
#ifdef DEBUG
printf("device_abort_1_svc()\n");
#endif
if (!isValidLink(*argp))
result.error = ERR_INVALIDLINKINDENTIFIER;
else {
result.error = 0;
}
return &result;
}
Create_LinkResp *
create_link_1_svc(Create_LinkParms *argp, struct svc_req *rqstp) {
static Create_LinkResp result;
#ifdef DEBUG
printf("create_link_1_svc()\n");
#endif
if (globals.Remote.vxi_connections == MAX_SESSIONS) {
result.error = ERR_OUTOFRESOURCES;
}
else if (argp->lockDevice && isLocked() && !waitForLock(FLAG_WAITLOCK, argp->lock_timeout)) {
result.error = ERR_DEVICELOCKEDBYANOTHERLINK;
}
else {
ActiveLink* link = malloc(sizeof(ActiveLink));
if (link == NULL) {
result.error = ERR_OUTOFRESOURCES;
}
else {
int linkid;
for (linkid = 0; linkid < SIZEOFARRAY(links); linkid++) {
if (links[linkid] == NULL) {
links[linkid] = link;
break;
}
}
globals.Remote.vxi_connections++;
#ifdef DEBUG
printf("created link %d, %d active links\n", linkid, globals.Remote.vxi_connections);
#endif
struct sockaddr_in sin;
socklen_t len = sizeof(sin);
getsockname(rqstp->rq_xprt->xp_sock, (struct sockaddr *) &sin, &len);
result.error = 0;
result.abortPort = ntohs(sin.sin_port);
result.lid = linkid;
}
}
return &result;
}
Device_WriteResp *
device_write_1_svc(Device_WriteParms *argp, struct svc_req *rqstp) {
static Device_WriteResp result;
#ifdef DEBUG
printf("device_write_1_svc()\n");
#endif
if (!isValidLink(argp->lid))
result.error = ERR_INVALIDLINKINDENTIFIER;
else if (isLocked() && !haveLock(argp->lid) && !waitForLock(argp->flags, argp->lock_timeout))
result.error = ERR_DEVICELOCKEDBYANOTHERLINK;
else if (!waitforio(argp->io_timeout)) {
result.size = 0;
result.error = ERR_IOTIMEOUT;
}
else {
#ifdef DEBUG
printf("got %s on link %d\n", argp->data.data_val, argp->lid);
#endif
Parser_main(argp->data.data_val, 0, GPIB_and_VXI_start_query_response, NULL);
result.size = argp->data.data_len;
result.error = 0;
}
return &result;
}
Device_ReadResp *
device_read_1_svc(Device_ReadParms *argp, struct svc_req *rqstp) {
static Device_ReadResp result;
#ifdef DEBUG
printf("device_read_1_svc()\n");
#endif
if (!isValidLink(argp->lid))
result.error = ERR_INVALIDLINKINDENTIFIER;
else if (isLocked() && !haveLock(argp->lid) && !waitForLock(argp->flags, argp->lock_timeout))
result.error = ERR_DEVICELOCKEDBYANOTHERLINK;
else if (!waitforio(argp->io_timeout)) {
result.error = ERR_IOTIMEOUT;
}
else {
if (globals.Registers.pending_output_message != NULL) {
result.data.data_val = globals.Registers.pending_output_message;
result.data.data_len = strlen(result.data.data_val);
}
else {
result.data.data_val = NULL;
result.data.data_len = 0;
}
result.error = 0;
result.reason = 0x4;
}
return &result;
}
Device_ReadStbResp *
device_readstb_1_svc(Device_GenericParms *argp, struct svc_req *rqstp) {
static Device_ReadStbResp result;
#ifdef DEBUG
printf("device_readstb_1_svc()\n");
#endif
if (!isValidLink(argp->lid))
result.error = ERR_INVALIDLINKINDENTIFIER;
else if (isLocked() && !haveLock(argp->lid) && !waitForLock(argp->flags, argp->lock_timeout))
result.error = ERR_DEVICELOCKEDBYANOTHERLINK;
else {
result.error = 0;
result.stb = GPIB_and_VXI_get_STB();
}
return &result;
}
Device_Error *
device_trigger_1_svc(Device_GenericParms *argp, struct svc_req *rqstp) {
static Device_Error result;
#ifdef DEBUG
printf("device_trigger_1_svc()\n");
#endif
if (!isValidLink(argp->lid))
result.error = ERR_INVALIDLINKINDENTIFIER;
else if (isLocked() && !haveLock(argp->lid) && !waitForLock(argp->flags, argp->lock_timeout))
result.error = ERR_DEVICELOCKEDBYANOTHERLINK;
else {
result.error = 0;
}
return &result;
}
Device_Error *
device_clear_1_svc(Device_GenericParms *argp, struct svc_req *rqstp) {
static Device_Error result;
#ifdef DEBUG
printf("device_clear_1_svc()\n");
#endif
if (!isValidLink(argp->lid))
result.error = ERR_INVALIDLINKINDENTIFIER;
else if (isLocked() && !haveLock(argp->lid) && !waitForLock(argp->flags, argp->lock_timeout))
result.error = ERR_DEVICELOCKEDBYANOTHERLINK;
else {
result.error = 0;
}
return &result;
}
Device_Error *
device_remote_1_svc(Device_GenericParms *argp, struct svc_req *rqstp) {
static Device_Error result;
#ifdef DEBUG
printf("device_remote_1_svc()\n");
#endif
if (!isValidLink(argp->lid))
result.error = ERR_INVALIDLINKINDENTIFIER;
else if (isLocked() && !haveLock(argp->lid) && !waitForLock(argp->flags, argp->lock_timeout))
result.error = ERR_DEVICELOCKEDBYANOTHERLINK;
else {
if (isLocked() && !haveLock(argp->lid))
result.error = ERR_DEVICELOCKEDBYANOTHERLINK;
else
result.error = 0;
}
return &result;
}
Device_Error *
device_local_1_svc(Device_GenericParms *argp, struct svc_req *rqstp) {
static Device_Error result;
#ifdef DEBUG
printf("device_local_1_svc()\n");
#endif
if (!isValidLink(argp->lid))
result.error = ERR_INVALIDLINKINDENTIFIER;
else if (isLocked() && !haveLock(argp->lid) && !waitForLock(argp->flags, argp->lock_timeout))
result.error = ERR_DEVICELOCKEDBYANOTHERLINK;
else {
if (isLocked() && !haveLock(argp->lid))
result.error = ERR_DEVICELOCKEDBYANOTHERLINK;
else
result.error = 0;
}
return &result;
}
Device_Error *
device_lock_1_svc(Device_LockParms *argp, struct svc_req *rqstp) {
static Device_Error result;
#ifdef DEBUG
printf("device_lock_1_svc()\n");
#endif
if (!isValidLink(argp->lid))
result.error = ERR_INVALIDLINKINDENTIFIER;
else {
if (isLocked(argp->lid)) {
result.error = ERR_DEVICELOCKEDBYANOTHERLINK;
if (haveLock(argp->lid)) {
// maybe do something here to warn about a device trying to lock multiple times?
}
}
else {
lock(argp->lid);
result.error = 0;
}
}
return &result;
}
Device_Error *
device_unlock_1_svc(Device_Link *argp, struct svc_req *rqstp) {
static Device_Error result;
#ifdef DEBUG
printf("device_unlock_1_svc()\n");
#endif
if (!isValidLink(*argp))
result.error = ERR_INVALIDLINKINDENTIFIER;
else {
if (!isLocked(*argp) || !haveLock(*argp))
result.error = ERR_NOLOCKHELDBYTHISLINK;
else {
result.error = 0;
unlock();
}
}
return &result;
}
void fireinterrupt() {
Device_SrqParms params;
params.handle.handle_val = inthandler;
params.handle.handle_len = strlen(inthandler);
device_intr_srq_1(¶ms, intclient);
}
Device_Error *
device_enable_srq_1_svc(Device_EnableSrqParms *argp, struct svc_req *rqstp) {
static Device_Error result;
#ifdef DEBUG
printf("device_enable_srq_1_svc()\n");
#endif
if (!isValidLink(argp->lid))
result.error = ERR_INVALIDLINKINDENTIFIER;
else {
if (inthandler != NULL) {
free(inthandler);
inthandler = NULL;
}
if (argp->enable) {
if (argp->handle.handle_val != NULL) {
inthandler = malloc(argp->handle.handle_len);
strncpy(inthandler, argp->handle.handle_val, argp->handle.handle_len);
#ifdef DEBUG
printf("Interrupt handle set to %s\n", inthandler);
#endif
fireinterrupt();
}
}
result.error = 0;
intenabled = argp->enable;
}
return &result;
}
Device_DocmdResp *
device_docmd_1_svc(Device_DocmdParms *argp, struct svc_req *rqstp) {
static Device_DocmdResp result;
#ifdef DEBUG
printf("device_docmd_1_svc()\n");
#endif
if (!isValidLink(argp->lid))
result.error = ERR_INVALIDLINKINDENTIFIER;
else if (isLocked() && !haveLock(argp->lid) && !waitForLock(argp->flags, argp->lock_timeout))
result.error = ERR_DEVICELOCKEDBYANOTHERLINK;
else {
result.data_out.data_out_len = 0;
result.data_out.data_out_val = NULL;
result.error = ERR_OPERATIONNOTSUPPORTED;
}
return &result;
}
Device_Error *
destroy_link_1_svc(Device_Link *argp, struct svc_req *rqstp) {
static Device_Error result;
#ifdef DEBUG
printf("destroy_link_1_svc()\n");
#endif
int lid = *argp;
if (!isValidLink(lid))
result.error = ERR_INVALIDLINKINDENTIFIER;
else {
globals.Remote.vxi_connections--;
#ifdef DEBUG
printf("link %d destroyed, %d active links\n", lid, globals.Remote.vxi_connections);
#endif
result.error = 0;
free(links[lid]);
links[lid] = NULL;
}
return &result;
}
Device_Error *
create_intr_chan_1_svc(Device_RemoteFunc *argp, struct svc_req *rqstp) {
static Device_Error result;
#ifdef DEBUG
printf("create_intr_chan_1_svc()\n");
char clientaddressstring[INET_ADDRSTRLEN];
inet_ntop(AF_INET, &argp->hostAddr, clientaddressstring, sizeof(clientaddressstring));
printf("Client %s is asking for an interrupt connection on port %u\n", clientaddressstring, argp->hostPort);
#endif
if (argp->progFamily != DEVICE_TCP || argp->progNum != DEVICE_INTR || argp->progVers != DEVICE_INTR_VERSION)
result.error = ERR_OPERATIONNOTSUPPORTED;
else if (intclient != NULL) {
result.error = ERR_CHANNELALREADYESTABLISHED;
}
else {
struct sockaddr_in clientaddr;
clientaddr.sin_family = AF_INET;
clientaddr.sin_port = htons(argp->hostPort);
clientaddr.sin_addr.s_addr = argp->hostAddr;
int sock = RPC_ANYSOCK;
CLIENT* clnt = clnttcp_create(&clientaddr, DEVICE_INTR, DEVICE_INTR_VERSION, &sock, 0, 0);
if (clnt == NULL) {
#ifdef DEBUG
printf("Couldn't create interrupt channel client\n");
#endif
result.error = ERR_CHANNELNOTESTABLISHED;
}
else {
intclient = clnt;
result.error = 0;
}
}
return &result;
}
Device_Error *
destroy_intr_chan_1_svc(void *argp, struct svc_req *rqstp) {
static Device_Error result;
#ifdef DEBUG
printf("destroy_intr_chan_1_svc()\n");
#endif
if (intclient == NULL) {
result.error = ERR_CHANNELNOTESTABLISHED;
}
else {
clnt_destroy(intclient);
intclient = NULL;
result.error = 0;
}
return &result;
}
|