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
|
/*
* Copyright (C) 2005-2006 by CERN/IT/GD/SC
* All rights reserved
*/
#ifndef lint
static char sccsid[] = "@(#)$RCSfile: Cns_getgrpbynam.c,v $ $Revision: 1.3 $ $Date: 2006/08/01 12:41:12 $ CERN IT-GD/SC Jean-Philippe Baud";
#endif /* not lint */
/* Cns_getgrpbynam - get gid associated with a given group name */
#include <errno.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_getgrpbynam(char *groupname, gid_t *gid)
{
int c;
char func[16];
int msglen;
int n;
char *q;
char *rbp;
char repbuf[4];
char *sbp;
char sendbuf[REQBUFSZ];
struct Cns_api_thread_info *thip;
strcpy (func, "Cns_getgrpbynam");
if (Cns_apiinit (&thip))
return (-1);
if (! groupname || ! gid) {
serrno = EFAULT;
return (-1);
}
/* Build request header */
sbp = sendbuf;
marshall_LONG (sbp, CNS_MAGIC);
marshall_LONG (sbp, CNS_GETGRPID);
q = sbp; /* save pointer. The next field will be updated */
msglen = 3 * LONGSIZE;
marshall_LONG (sbp, msglen);
/* Build request body */
marshall_STRING (sbp, groupname);
msglen = sbp - sendbuf;
marshall_LONG (q, msglen); /* update length field */
c = send2nsd (NULL, NULL, sendbuf, msglen, repbuf, sizeof(repbuf));
if (c == 0) {
rbp = repbuf;
unmarshall_LONG (rbp, n);
*gid = n;
}
return (c);
}
|