Several of these functions can be used to just check the validity of an ID or name.
Use the NULL pointer case to support this rather than writing a completely new functions for this logic.
For example, the `f_account_group_id_by_name()` function can have NULL for the `id` parameter.
In this case, nothing is written for the `id` and the function does not error out on invalid parameter (for when `id` is NULL).
The same logic is applied for the `f_account_group_name_by_id()` for the `name` parameter.
The same logic is applied for both user functions.
The account by functions are not updated as this is not needed.
Update the documentation for the account by functions, documenting that NULL is not allowed.
#ifndef _di_f_account_group_id_by_name_
f_status_t f_account_group_id_by_name(const f_string_static_t name, f_gid_t * const id) {
- #ifndef _di_level_0_parameter_checking_
- if (!id) return F_status_set_error(F_parameter);
- #endif // _di_level_0_parameter_checking_
const size_t length_max = sysconf(_SC_GETPW_R_SIZE_MAX);
else {
if (!pointer) return F_exist_not;
- *id = (f_gid_t) group_data.gr_gid;
+ if (id) {
+ *id = (f_gid_t) group_data.gr_gid;
+ }
return F_okay;
}
if (!pointer) return F_exist_not;
- *id = group_data.gr_gid;
+ if (id) {
+ *id = group_data.gr_gid;
+ }
return F_okay;
}
#ifndef _di_f_account_group_name_by_id_
f_status_t f_account_group_name_by_id(const f_gid_t id, f_string_dynamic_t * const name) {
- #ifndef _di_level_0_parameter_checking_
- if (!name) return F_status_set_error(F_parameter);
- #endif // _di_level_0_parameter_checking_
- name->used = 0;
+ if (name) {
+ name->used = 0;
+ }
f_status_t status = F_okay;
else {
if (!pointer) return F_exist_not;
- const f_number_unsigned_t name_length = strnlen(group_data.gr_name, length);
+ if (name) {
+ const f_number_unsigned_t name_length = strnlen(group_data.gr_name, length);
- name->used = 0;
+ name->used = 0;
- status = f_memory_array_increase_by(name_length + 1, sizeof(f_char_t), (void **) &name->string, &name->used, &name->size);
- if (F_status_is_error(status)) return status;
+ status = f_memory_array_increase_by(name_length + 1, sizeof(f_char_t), (void **) &name->string, &name->used, &name->size);
+ if (F_status_is_error(status)) return status;
- memcpy(name->string, group_data.gr_name, sizeof(f_char_t) * name_length);
+ memcpy(name->string, group_data.gr_name, sizeof(f_char_t) * name_length);
- name->string[name_length] = 0;
- name->used = name_length;
+ name->string[name_length] = 0;
+ name->used = name_length;
+ }
return F_okay;
}
const f_number_unsigned_t name_length = strnlen(group_data.gr_name, length);
- name->used = 0;
-
- status = f_memory_array_increase_by(name_length + 1, sizeof(f_char_t), (void **) &name->string, &name->used, &name->size);
- if (F_status_is_error(status)) return status;
+ if (name) {
+ status = f_memory_array_increase_by(name_length + 1, sizeof(f_char_t), (void **) &name->string, &name->used, &name->size);
+ if (F_status_is_error(status)) return status;
- memcpy(name->string, group_data.gr_name, sizeof(f_char_t) * name_length);
+ memcpy(name->string, group_data.gr_name, sizeof(f_char_t) * name_length);
- name->string[name_length] = 0;
- name->used = name_length;
+ name->string[name_length] = 0;
+ name->used = name_length;
+ }
return F_okay;
}
#ifndef _di_f_account_id_by_name_
f_status_t f_account_id_by_name(const f_string_static_t name, f_uid_t * const id) {
- #ifndef _di_level_0_parameter_checking_
- if (!id) return F_status_set_error(F_parameter);
- #endif // _di_level_0_parameter_checking_
const size_t length_max = sysconf(_SC_GETPW_R_SIZE_MAX);
else {
if (!pointer) return F_exist_not;
- *id = (f_uid_t) password.pw_uid;
+ if (id) {
+ *id = (f_uid_t) password.pw_uid;
+ }
return F_okay;
}
if (!pointer) return F_exist_not;
- *id = (f_uid_t) password.pw_uid;
+ if (id) {
+ *id = (f_uid_t) password.pw_uid;
+ }
return F_okay;
}
#ifndef _di_f_account_name_by_id_
f_status_t f_account_name_by_id(const f_uid_t id, f_string_dynamic_t * const name) {
- #ifndef _di_level_0_parameter_checking_
- if (!name) return F_status_set_error(F_parameter);
- #endif // _di_level_0_parameter_checking_
- name->used = 0;
+ if (name) {
+ name->used = 0;
+ }
f_status_t status = F_okay;
const f_number_unsigned_t name_length = strnlen(password.pw_name, length);
- name->used = 0;
-
- status = f_memory_array_increase_by(name_length + 1, sizeof(f_char_t), (void **) &name->string, &name->used, &name->size);
- if (F_status_is_error(status)) return status;
+ if (name) {
+ status = f_memory_array_increase_by(name_length + 1, sizeof(f_char_t), (void **) &name->string, &name->used, &name->size);
+ if (F_status_is_error(status)) return status;
- memcpy(name->string, password.pw_name, sizeof(f_char_t) * name_length);
+ memcpy(name->string, password.pw_name, sizeof(f_char_t) * name_length);
- name->string[name_length] = 0;
- name->used = name_length;
+ name->string[name_length] = 0;
+ name->used = name_length;
+ }
return F_okay;
}
const f_number_unsigned_t name_length = strnlen(password.pw_name, length);
- name->used = 0;
+ if (name) {
+ status = f_memory_array_increase_by(name_length + 1, sizeof(f_char_t), (void **) &name->string, &name->used, &name->size);
+ if (F_status_is_error(status)) return status;
- status = f_memory_array_increase_by(name_length + 1, sizeof(f_char_t), (void **) &name->string, &name->used, &name->size);
- if (F_status_is_error(status)) return status;
+ memcpy(name->string, password.pw_name, sizeof(f_char_t) * name_length);
- memcpy(name->string, password.pw_name, sizeof(f_char_t) * name_length);
-
- name->string[name_length] = 0;
- name->used = name_length;
+ name->string[name_length] = 0;
+ name->used = name_length;
+ }
return F_okay;
}
* This is replaced with by the account information.
* All strings will be NULL terminated.
*
+ * Must not be NULL.
+ *
* @return
* F_okay on success.
*
* This is replaced with by the account information.
* All strings will be NULL terminated.
*
+ * Must not be NULL.
+ *
* @return
* F_okay on success.
*
* @param id
* The id associated with the given name.
*
+ * If NULL, then then this doesn't return the ID.
+ * This is useful for determining the validity of an ID without actually caring about the value itself.
+ *
* @return
* F_okay on success.
*
* This is replaced with by the group name.
* The name will be NULL terminated after the name.used.
*
+ * If NULL, then then this doesn't return the name.
+ * This is useful for determining the validity of an ID without actually caring about the value itself.
+ *
* @return
* F_okay on success.
*
* @param id
* The id associated with the given name.
*
+ * If NULL, then then this doesn't return the ID.
+ * This is useful for determining the validity of an ID without actually caring about the value itself.
+ *
* @return
* F_okay on success.
*
* This is replaced with by the user name.
* The name will be NULL terminated after the name.used.
*
+ * If NULL, then then this doesn't return the name.
+ * This is useful for determining the validity of an ID without actually caring about the value itself.
+ *
* @return
* F_okay on success.
*
assert_int_equal(status, F_exist_not);
}
-}
-
-void test__f_account_group_id_by_name__parameter_checking(void **state) {
-
- const f_string_static_t name = f_string_static_t_initialize;
{
+ will_return(__wrap_sysconf, size);
+ will_return(__wrap_getgrnam_r, false);
+ will_return(__wrap_getgrnam_r, &group_data);
+ will_return(__wrap_getgrnam_r, (struct group *) 0);
+
const f_status_t status = f_account_group_id_by_name(name, 0);
- assert_int_equal(status, F_status_set_error(F_parameter));
+ assert_int_equal(status, F_exist_not);
}
}
assert_int_equal(status, F_okay);
assert_int_equal(gid, group_data.gr_gid);
}
+
+ {
+ will_return(__wrap_sysconf, size);
+ will_return(__wrap_getgrnam_r, false);
+ will_return(__wrap_getgrnam_r, &group_data);
+ will_return(__wrap_getgrnam_r, &pointer);
+
+ name.string = group_data.gr_name;
+ name.used = strlen(group_data.gr_name);
+
+ const f_status_t status = f_account_group_id_by_name(name, 0);
+
+ assert_int_equal(status, F_okay);
+ }
}
#ifdef __cplusplus
extern void test__f_account_group_id_by_name__not_found(void **state);
/**
- * Test that parameter checking works as expected.
- *
- * @see f_account_group_id_by_name()
- */
-extern void test__f_account_group_id_by_name__parameter_checking(void **state);
-
-/**
* Test that function works.
*
* @see f_account_group_id_by_name()
assert_int_equal(status, F_exist_not);
}
- free((void *) name.string);
-}
-
-void test__f_account_group_name_by_id__parameter_checking(void **state) {
-
{
- const f_status_t status = f_account_group_name_by_id(0, 0);
+ will_return(__wrap_sysconf, size);
+ will_return(__wrap_getgrgid_r, false);
+ will_return(__wrap_getgrgid_r, &group_data);
+ will_return(__wrap_getgrgid_r, (struct group *) 0);
+
+ const f_status_t status = f_account_group_name_by_id(gid, 0);
- assert_int_equal(status, F_status_set_error(F_parameter));
+ assert_int_equal(status, F_exist_not);
}
+
+ free((void *) name.string);
}
void test__f_account_group_name_by_id__works(void **state) {
assert_string_equal(name.string, group_data.gr_name);
}
+ {
+ will_return(__wrap_sysconf, size);
+ will_return(__wrap_getgrgid_r, false);
+ will_return(__wrap_getgrgid_r, &group_data);
+ will_return(__wrap_getgrgid_r, &pointer);
+
+ const f_status_t status = f_account_group_name_by_id(gid, 0);
+
+ assert_int_equal(status, F_okay);
+ }
+
free((void *) name.string);
}
extern void test__f_account_group_name_by_id__not_found(void **state);
/**
- * Test that parameter checking works as expected.
- *
- * @see f_account_group_name_by_id()
- */
-extern void test__f_account_group_name_by_id__parameter_checking(void **state);
-
-/**
* Test that function works.
*
* @see f_account_group_name_by_id()
assert_int_equal(status, F_exist_not);
}
-}
-
-void test__f_account_id_by_name__parameter_checking(void **state) {
-
- const f_string_static_t name = f_string_static_t_initialize;
{
+ will_return(__wrap_sysconf, size);
+ will_return(__wrap_getpwnam_r, false);
+ will_return(__wrap_getpwnam_r, &password);
+ will_return(__wrap_getpwnam_r, (struct passwd *) 0);
+
const f_status_t status = f_account_id_by_name(name, 0);
- assert_int_equal(status, F_status_set_error(F_parameter));
+ assert_int_equal(status, F_exist_not);
}
}
assert_int_equal(status, F_okay);
assert_int_equal(uid, password.pw_uid);
}
+
+ {
+ will_return(__wrap_sysconf, size);
+ will_return(__wrap_getpwnam_r, false);
+ will_return(__wrap_getpwnam_r, &password);
+ will_return(__wrap_getpwnam_r, &pointer);
+
+ name.string = password.pw_name;
+ name.used = strlen(password.pw_name);
+
+ const f_status_t status = f_account_id_by_name(name, 0);
+
+ assert_int_equal(status, F_okay);
+ }
}
#ifdef __cplusplus
extern void test__f_account_id_by_name__not_found(void **state);
/**
- * Test that parameter checking works as expected.
- *
- * @see f_account_id_by_name()
- */
-extern void test__f_account_id_by_name__parameter_checking(void **state);
-
-/**
* Test that function works.
*
* @see f_account_id_by_name()
assert_int_equal(status, F_exist_not);
}
- free((void *) name.string);
-}
-
-void test__f_account_name_by_id__parameter_checking(void **state) {
-
{
- const f_status_t status = f_account_name_by_id(0, 0);
+ will_return(__wrap_sysconf, size);
+ will_return(__wrap_getpwuid_r, false);
+ will_return(__wrap_getpwuid_r, &password);
+ will_return(__wrap_getpwuid_r, (struct passwd *) 0);
+
+ const f_status_t status = f_account_name_by_id(uid, 0);
- assert_int_equal(status, F_status_set_error(F_parameter));
+ assert_int_equal(status, F_exist_not);
}
+
+ free((void *) name.string);
}
void test__f_account_name_by_id__works(void **state) {
assert_string_equal(name.string, password.pw_name);
}
+ {
+ will_return(__wrap_sysconf, size);
+ will_return(__wrap_getpwuid_r, false);
+ will_return(__wrap_getpwuid_r, &password);
+ will_return(__wrap_getpwuid_r, &pointer);
+
+ const f_status_t status = f_account_name_by_id(uid, 0);
+
+ assert_int_equal(status, F_okay);
+ }
+
free((void *) name.string);
}
extern void test__f_account_name_by_id__not_found(void **state);
/**
- * Test that parameter checking works as expected.
- *
- * @see f_account_name_by_id()
- */
-extern void test__f_account_name_by_id__parameter_checking(void **state);
-
-/**
* Test that function works.
*
* @see f_account_name_by_id()
#ifndef _di_level_0_parameter_checking_
cmocka_unit_test(test__f_account_by_id__parameter_checking),
cmocka_unit_test(test__f_account_by_name__parameter_checking),
- cmocka_unit_test(test__f_account_group_id_by_name__parameter_checking),
- cmocka_unit_test(test__f_account_group_name_by_id__parameter_checking),
- cmocka_unit_test(test__f_account_id_by_name__parameter_checking),
- cmocka_unit_test(test__f_account_name_by_id__parameter_checking),
+ // f_account_group_id_by_name() doesn't use parameter checking.
+ // f_account_group_name_by_id() doesn't use parameter checking.
+ // f_account_id_by_name() doesn't use parameter checking.
+ // f_account_name_by_id() doesn't use parameter checking.
// f_accounts_delete_callback() doesn't use parameter checking.
// f_accounts_destroy_callback() doesn't use parameter checking.