172 lines
6.2 KiB
C
172 lines
6.2 KiB
C
/****************************************************************************
|
|
* apps/fsutils/passwd/passwd.h
|
|
*
|
|
* Copyright (C) 2016 Gregory Nutt. All rights reserved.
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
* used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef __APPS_FSUTILS_PASSWD_PASSWD_H
|
|
#define __APPS_FSUTILS_PASSWD_PASSWD_H 1
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <sys/types.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <semaphore.h>
|
|
|
|
/****************************************************************************
|
|
* Pre-processor Definitions
|
|
****************************************************************************/
|
|
|
|
#define MAX_ENCRYPTED 48 /* Maximum size of a password (encrypted, ASCII) */
|
|
#define MAX_USERNAME 48 /* Maximum size of a username */
|
|
#define MAX_RECORD (MAX_USERNAME + MAX_ENCRYPTED + 1)
|
|
|
|
/* The TEA incryption algorithm generates 8 bytes of encrypted data per
|
|
* 8 bytes of unencrypted data. The encrypted presentation is base64 which
|
|
* is 8-bits of ASCII for each 6 bits of data. That is a 3-to-4 expansion
|
|
* ratio. MAX_ENCRYPTED must be a multiple of 8 bytes.
|
|
*/
|
|
|
|
#define MAX_PASSWORD (3 * MAX_ENCRYPTED / 4)
|
|
|
|
/****************************************************************************
|
|
* Private Types
|
|
****************************************************************************/
|
|
|
|
struct passwd_s
|
|
{
|
|
off_t offset; /* File offset (start of record) */
|
|
char encrypted[MAX_ENCRYPTED + 1]; /* Encrtyped password in file */
|
|
};
|
|
|
|
/****************************************************************************
|
|
* Public Function Prototypes
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: passwd_lock and passwd_unlock
|
|
*
|
|
* Description:
|
|
* Lock the /etc/passwd file. This is not a real lock at the level of the
|
|
* file system. Rather, it only prevents concurrent modification of the
|
|
* /etc/passwd file by passwd_adduser(), passwd_deluser(), and
|
|
* passwd_update(). Other accesses to /etc/passwd could still cause
|
|
* concurrency problem and file corruption.
|
|
*
|
|
* Input Parameters:
|
|
*
|
|
* Returned Value:
|
|
* Zero (OK) is returned on success; a negated errno value is returned on
|
|
* failure.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#if defined(CONFIG_FS_WRITABLE) && !defined(CONFIG_FSUTILS_PASSWD_READONLY)
|
|
# define PASSWD_SEM_DECL(s) FAR sem_t *s
|
|
int passwd_lock(FAR sem_t **semp);
|
|
int passwd_unlock(FAR sem_t *sem);
|
|
#else
|
|
# define PASSWD_SEM_DECL(s)
|
|
# define passwd_lock(semp) (0)
|
|
# define passwd_unlock(sem) (0)
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
* Name: passwd_encrypt
|
|
*
|
|
* Description:
|
|
* Encrypt a password. Currently uses the Tiny Encryption Algorithm.
|
|
*
|
|
* Input Parameters:
|
|
* password -- The password string to be encrypted
|
|
*
|
|
* Returned Value:
|
|
* Zero (OK) is returned on success; a negated errno value is returned on
|
|
* failure.
|
|
*
|
|
****************************************************************************/
|
|
|
|
int passwd_encrypt(FAR const char *password, char encrypted[MAX_ENCRYPTED + 1]);
|
|
|
|
/****************************************************************************
|
|
* Name: passwd_append
|
|
*
|
|
* Description:
|
|
* Append a new record to the end of the /etc/passwd file
|
|
*
|
|
* Input Parameters:
|
|
*
|
|
* Returned Value:
|
|
* Zero (OK) is returned on success; a negated errno value is returned on
|
|
* failure.
|
|
*
|
|
****************************************************************************/
|
|
|
|
int passwd_append(FAR const char *username, FAR const char *password);
|
|
|
|
/****************************************************************************
|
|
* Name: passwd_delete
|
|
*
|
|
* Description:
|
|
* Delete on record from the password file at offset.
|
|
*
|
|
* Input Parameters:
|
|
*
|
|
* Returned Value:
|
|
* Zero (OK) is returned on success; a negated errno value is returned on
|
|
* failure.
|
|
*
|
|
****************************************************************************/
|
|
|
|
int passwd_delete(off_t offset);
|
|
|
|
/****************************************************************************
|
|
* Name: passwd_find
|
|
*
|
|
* Description:
|
|
* Find a password in the
|
|
*
|
|
* Input Parameters:
|
|
*
|
|
* Returned Value:
|
|
* Zero (OK) is returned on success; a negated errno value is returned on
|
|
* failure.
|
|
*
|
|
****************************************************************************/
|
|
|
|
int passwd_find(FAR const char *username, FAR struct passwd_s *passwd);
|
|
|
|
#endif /* __APPS_FSUTILS_PASSWD_PASSWD_H */
|