Newer
Older

Maarten de Waard
committed
/**
* Callback function that deletes an SSH key from the list of keys authorised
* for access to the initrd. The line will be left empty, because that keeps

Maarten de Waard
committed
*
* @param[in] request incoming HTTP request
* @param[out] response HTTP response to the request
* @param[in] user_data extra data to pass between main thread and callbacks
* @return internal status code
*/
int callback_ssh_keys_delete(const struct _u_request * request,
struct _u_response * response, void * user_data)
{
// Read ssh key id from request URI.
const char * id_string = u_map_get(request->map_url, "id");
if (id_string == NULL)
{
return send_simple_response(response, 400, "error",
"missing url parameter `id`");
}
int id;
int r = parse_int(id_string, &id);
if (r != 0)
{

Maarten de Waard
committed
y_log_message(Y_LOG_LEVEL_WARNING,
"invalid url parameter `id`: %s\n", id_string);

Maarten de Waard
committed
return send_simple_response(response, 400, "error",
"invalid url parameter `id`");
}
// Replace the key at ID with ""
r = replace_ssh_key(id, "");

Maarten de Waard
committed
{

Maarten de Waard
committed
return send_simple_response(response, 500, "error",
"error opening authorized_keys");

Maarten de Waard
committed
return send_simple_response(response, 500, "error",
"error opening authorized_keys tmp file");
return send_simple_response(response, 500, "error",
"Unknown error while processing ssh keys");
}
return send_simple_response(response, 200, "status", "ok");
}