Initial commit for Tizen
[profile/extras/shadow-utils.git] / lib / shadowmem.c
1 /*
2  * Copyright (c) 1990 - 1994, Julianne Frances Haugh
3  * Copyright (c) 1996 - 2000, Marek Michałkiewicz
4  * Copyright (c) 2001       , Michał Moskal
5  * Copyright (c) 2005       , Tomasz Kłoczko
6  * Copyright (c) 2007 - 2009, Nicolas François
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. The name of the copyright holders or contributors may not be used to
18  *    endorse or promote products derived from this software without
19  *    specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
24  * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
25  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <config.h>
35
36 #ident "$Id: shadowmem.c 2777 2009-04-23 17:43:27Z nekral-guest $"
37
38 #include "prototypes.h"
39 #include "defines.h"
40 #include <shadow.h>
41 #include <stdio.h>
42 #include "shadowio.h"
43
44 /*@null@*/ /*@only@*/struct spwd *__spw_dup (const struct spwd *spent)
45 {
46         struct spwd *sp;
47
48         sp = (struct spwd *) malloc (sizeof *sp);
49         if (NULL == sp) {
50                 return NULL;
51         }
52         *sp = *spent;
53         sp->sp_namp = strdup (spent->sp_namp);
54         if (NULL == sp->sp_namp) {
55                 return NULL;
56         }
57         sp->sp_pwdp = strdup (spent->sp_pwdp);
58         if (NULL == sp->sp_pwdp) {
59                 return NULL;
60         }
61
62         return sp;
63 }
64
65 void spw_free (/*@out@*/ /*@only@*/struct spwd *spent)
66 {
67         free (spent->sp_namp);
68         memzero (spent->sp_pwdp, strlen (spent->sp_pwdp));
69         free (spent->sp_pwdp);
70         free (spent);
71 }
72