aboutsummaryrefslogtreecommitdiffstats
path: root/samsung-ipc/sec.c
blob: 1570836eb075baffd7224091b3a8fb663f7ae4a8 (plain)
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/*
 * This file is part of libsamsung-ipc.
 *
 * Copyright (C) 2011 Simon Busch <morphis@gravedo.de>
 * Copyright (C) 2011-2014 Paul Kocialkowski <contact@paulk.fr>
 *
 * libsamsung-ipc is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2 of the License, or
 * (at your option) any later version.
 *
 * libsamsung-ipc is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with libsamsung-ipc.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <stdlib.h>
#include <string.h>

#include <samsung-ipc.h>

int ipc_sec_pin_status_setup(struct ipc_sec_pin_status_request_data *data,
    unsigned char type, const char *pin1, const char *pin2)
{
    size_t pin1_length;
    size_t pin2_length;

    if (data == NULL)
        return -1;

    memset(data, 0, sizeof(struct ipc_sec_pin_status_request_data));
    data->type = type;

    if (pin1 != NULL) {
        pin1_length = strlen(pin1);
        if (pin1_length > sizeof(data->pin1))
            pin1_length = sizeof(data->pin1);

        data->pin1_length = (unsigned char) pin1_length;
        strncpy((char *) data->pin1, pin1, pin1_length);
    }

    if (pin2 != NULL) {
        pin2_length = strlen(pin2);
        if (pin2_length > sizeof(data->pin2))
            pin2_length = sizeof(data->pin2);

        data->pin2_length = (unsigned char) pin2_length;
        strncpy((char *) data->pin2, pin2, pin2_length);
    }

    return 0;
}

int ipc_sec_phone_lock_request_set_setup(struct ipc_sec_phone_lock_request_set_data *data,
    unsigned char facility_type, unsigned char active, const char *password)
{
    size_t password_length;

    if (data == NULL)
        return -1;

    memset(data, 0, sizeof(struct ipc_sec_phone_lock_request_set_data));
    data->facility_type = facility_type;
    data->active = active;

    if (password != NULL) {
        password_length = strlen(password);
        if (password_length > sizeof(data->password))
            password_length = sizeof(data->password);

        data->password_length = (unsigned char) password_length;
        strncpy((char *) data->password, password, password_length);
    } else {
        data->password_length = 0;
    }

    return 0;
}

int ipc_sec_change_locking_pw_setup(struct ipc_sec_change_locking_pw_data *data,
    unsigned char facility_type, const char *password_old,
    const char *password_new)
{
    size_t password_old_length;
    size_t password_new_length;

    if (data == NULL)
        return -1;

    data->facility_type = facility_type;

    if (password_old != NULL) {
        password_old_length = strlen(password_old);
        if (password_old_length > sizeof(data->password_old_length))
            password_old_length = sizeof(data->password_old_length);

        data->password_old_length = (unsigned char) password_old_length;
        strncpy((char *) data->password_old, password_old, password_old_length);
    } else {
        data->password_old_length = 0;
    }

    if (password_new != NULL) {
        password_new_length = strlen(password_new);
        if (password_new_length > sizeof(data->password_new_length))
            password_new_length = sizeof(data->password_new_length);

        data->password_new_length = (unsigned char) password_new_length;
        strncpy((char *) data->password_new, password_new, password_new_length);
    } else {
        data->password_new_length = 0;
    }

    return 0;
}

int ipc_sec_lock_infomation_setup(struct ipc_sec_lock_infomation_request_data *data,
    unsigned char type)
{
    if (data == NULL)
        return -1;

    memset(data, 0, sizeof(struct ipc_sec_lock_infomation_request_data));
    data->magic = 0x01;
    data->type = type;

    return 0;
}

// vim:ts=4:sw=4:expandtab