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
|
/*
* Copyright (C) 2010 by CERN/IT/GT/DMS
* All rights reserved
*/
#ifndef lint
static char sccsid[] = "@(#)$RCSfile: Cns_getreplicass.c $ $Revision: 3538 $ $Date: 2010-04-23 17:15:47 +0200 (Fri, 23 Apr 2010) $ CERN IT-GT/DMS Jean-Philippe Baud";
#endif /* not lint */
/* Cns_getreplicass - get replica entries associated with a list of SFNs */
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#if defined(_WIN32)
#include <winsock2.h>
#else
#include <unistd.h>
#include <netinet/in.h>
#endif
#include "marshall.h"
#include "Cns_api.h"
#include "Cns.h"
#include "serrno.h"
int DLL_DECL
Cns_getreplicass(int nbsfns, const char **sfns, int *nbentries, struct Cns_filereplicas **rep_entries)
{
int c;
char func[17];
gid_t gid;
int i;
int msglen;
char *q;
char *rbp;
char repbuf[4];
char *sbp;
char *sendbuf;
struct Cns_api_thread_info *thip;
uid_t uid;
strcpy (func, "Cns_getreplicass");
if (Cns_apiinit (&thip))
return (-1);
uid = geteuid();
gid = getegid();
#if defined(_WIN32)
if (uid < 0 || gid < 0) {
Cns_errmsg (func, NS053);
serrno = SENOMAPFND;
return (-1);
}
#endif
if (nbsfns <= 0) {
serrno = EINVAL;
return (-1);
}
if (! sfns || ! nbentries || ! rep_entries) {
serrno = EFAULT;
return (-1);
}
/* Compute size of send buffer */
msglen = 6 * LONGSIZE;
for (i = 0; i < nbsfns; i++) {
msglen += strlen (sfns[i]) + 1;
}
/* Allocate send buffer */
if ((sendbuf = malloc (msglen)) == NULL) {
serrno = ENOMEM;
return (-1);
}
/* Build request header */
sbp = sendbuf;
marshall_LONG (sbp, CNS_MAGIC);
marshall_LONG (sbp, CNS_GETREPLICASS);
q = sbp; /* save pointer. The next field will be updated */
msglen = 3 * LONGSIZE;
marshall_LONG (sbp, msglen);
/* Build request body */
marshall_LONG (sbp, uid);
marshall_LONG (sbp, gid);
marshall_LONG (sbp, nbsfns);
for (i = 0; i < nbsfns; i++) {
marshall_STRING (sbp, sfns[i]);
}
msglen = sbp - sendbuf;
marshall_LONG (q, msglen); /* update length field */
c = send2nsdx (NULL, NULL, sendbuf,
msglen, repbuf, sizeof(repbuf), (void **)rep_entries, nbentries);
if (c == 0) {
rbp = repbuf;
unmarshall_LONG (rbp, *nbentries);
if (*nbentries == 0) {
*rep_entries = NULL;
return (0);
}
}
return (c);
}
|