lkml.org 
[lkml]   [2014]   [Mar]   [20]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Subject[PATCH 21/33] Get Clients PID
From
Date
Get the Clients PID using getsockopt. This is done for security reasons. So
that we dont get any malicious dump requests.

Signed-off-by: Janani Venkataraman <jananive@linux.vnet.ibm.com>
---
src/coredump.c | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)

diff --git a/src/coredump.c b/src/coredump.c
index fadb7cd..599a912 100755
--- a/src/coredump.c
+++ b/src/coredump.c
@@ -22,6 +22,7 @@
* Suzuki K. Poulose <suzuki@in.ibm.com>
*/

+#define _GNU_SOURCE
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
@@ -430,17 +431,38 @@ int receive_core_filename(char *core_file)
return 0;
}

+/* Get client details */
+int get_client_pid(struct ucred *client_info)
+{
+ socklen_t len = sizeof(struct ucred);
+ if (getsockopt(new_sock, SOL_SOCKET, SO_PEERCRED,
+ client_info, &len)) {
+ send_reply(errno);
+ gencore_log("[%d]: Can't get credentials of the client:%s\n",
+ pid_log, strerror(errno));
+ return -1;
+ }
+
+ return 0;
+}
+
/* Services requests */
int service_request(void)
{
int ret;
char core_file[CORE_FILE_NAME_SZ];
+ struct ucred client_info;

/* Receive the message */
ret = receive_core_filename(core_file);
if (ret)
goto cleanup;

+ /* Fetch client PID */
+ ret = get_client_pid(&client_info);
+ if (ret)
+ goto cleanup;
+
cleanup:
close(new_sock);
if (ret == -1)


\
 
 \ /
  Last update: 2014-03-20 14:41    [W:0.241 / U:0.436 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site