This file is indexed.

/usr/share/gocode/src/github.com/msteinert/pam/transaction.c is in golang-github-msteinert-pam-dev 0.0~git20170830.0.f4cd9f5-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
#include "_cgo_export.h"
#include <security/pam_appl.h>
#include <string.h>

int cb_pam_conv(
	int num_msg,
	const struct pam_message **msg,
	struct pam_response **resp,
	void *appdata_ptr)
{
	*resp = calloc(num_msg, sizeof **resp);
	if (num_msg <= 0 || num_msg > PAM_MAX_NUM_MSG) {
		return PAM_CONV_ERR;
	}
	if (!*resp) {
		return PAM_BUF_ERR;
	}
	for (size_t i = 0; i < num_msg; ++i) {
		struct cbPAMConv_return result = cbPAMConv(
				msg[i]->msg_style,
				(char *)msg[i]->msg,
				(long)appdata_ptr);
		if (result.r1 != PAM_SUCCESS) {
			goto error;
		}
		(*resp)[i].resp = result.r0;
	}
	return PAM_SUCCESS;
error:
	for (size_t i = 0; i < num_msg; ++i) {
		if ((*resp)[i].resp) {
			memset((*resp)[i].resp, 0, strlen((*resp)[i].resp));
			free((*resp)[i].resp);
		}
	}
	memset(*resp, 0, num_msg * sizeof *resp);
	free(*resp);
	*resp = NULL;
	return PAM_CONV_ERR;
}

void init_pam_conv(struct pam_conv *conv, long c)
{
	conv->conv = cb_pam_conv;
	conv->appdata_ptr = (void *)c;
}