1995-08-09 08:06:35 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
2011-07-27 07:17:02 -07:00
|
|
|
/* OCaml */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
1996-04-30 07:53:58 -07:00
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
1999-11-17 10:59:06 -08:00
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
2001-12-07 05:41:02 -08:00
|
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
|
|
/* the special exception on linking described in file ../../LICENSE. */
|
1995-08-09 08:06:35 -07:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
1995-05-08 08:18:32 -07:00
|
|
|
#include <mlvalues.h>
|
|
|
|
#include <alloc.h>
|
|
|
|
#include <memory.h>
|
|
|
|
#include <fail.h>
|
1996-09-04 07:15:31 -07:00
|
|
|
#include "unixsupport.h"
|
1995-05-08 08:18:32 -07:00
|
|
|
#include <pwd.h>
|
|
|
|
|
1997-09-02 05:55:01 -07:00
|
|
|
static value alloc_passwd_entry(struct passwd *entry)
|
1995-05-08 08:18:32 -07:00
|
|
|
{
|
|
|
|
value res;
|
1997-05-26 10:16:31 -07:00
|
|
|
value name = Val_unit, passwd = Val_unit, gecos = Val_unit;
|
|
|
|
value dir = Val_unit, shell = Val_unit;
|
1995-05-08 08:18:32 -07:00
|
|
|
|
1997-05-26 10:16:31 -07:00
|
|
|
Begin_roots5 (name, passwd, gecos, dir, shell);
|
|
|
|
name = copy_string(entry->pw_name);
|
|
|
|
passwd = copy_string(entry->pw_passwd);
|
1999-05-18 11:46:17 -07:00
|
|
|
#ifndef __BEOS__
|
1997-05-26 10:16:31 -07:00
|
|
|
gecos = copy_string(entry->pw_gecos);
|
1999-05-18 11:46:17 -07:00
|
|
|
#else
|
|
|
|
gecos = copy_string("");
|
|
|
|
#endif
|
1997-05-26 10:16:31 -07:00
|
|
|
dir = copy_string(entry->pw_dir);
|
|
|
|
shell = copy_string(entry->pw_shell);
|
1998-10-26 11:19:32 -08:00
|
|
|
res = alloc_small(7, 0);
|
1997-05-26 10:16:31 -07:00
|
|
|
Field(res,0) = name;
|
|
|
|
Field(res,1) = passwd;
|
|
|
|
Field(res,2) = Val_int(entry->pw_uid);
|
|
|
|
Field(res,3) = Val_int(entry->pw_gid);
|
|
|
|
Field(res,4) = gecos;
|
|
|
|
Field(res,5) = dir;
|
|
|
|
Field(res,6) = shell;
|
|
|
|
End_roots();
|
1995-05-08 08:18:32 -07:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2001-08-28 07:47:48 -07:00
|
|
|
CAMLprim value unix_getpwnam(value name)
|
1995-05-08 08:18:32 -07:00
|
|
|
{
|
|
|
|
struct passwd * entry;
|
|
|
|
entry = getpwnam(String_val(name));
|
1995-06-18 07:59:32 -07:00
|
|
|
if (entry == (struct passwd *) NULL) raise_not_found();
|
1995-05-08 08:18:32 -07:00
|
|
|
return alloc_passwd_entry(entry);
|
|
|
|
}
|
|
|
|
|
2001-08-28 07:47:48 -07:00
|
|
|
CAMLprim value unix_getpwuid(value uid)
|
1995-05-08 08:18:32 -07:00
|
|
|
{
|
|
|
|
struct passwd * entry;
|
|
|
|
entry = getpwuid(Int_val(uid));
|
1995-06-18 07:59:32 -07:00
|
|
|
if (entry == (struct passwd *) NULL) raise_not_found();
|
1995-05-08 08:18:32 -07:00
|
|
|
return alloc_passwd_entry(entry);
|
|
|
|
}
|