From: Joshua Brindle <method@manicmethod.com>
To: Stephen Smalley <sds@tycho.nsa.gov>
Cc: Karl MacMillan <kmacmillan@mentalrootkit.com>, selinux@tycho.nsa.gov
Subject: Re: [PATCH] Basic policy representation
Date: Tue, 08 May 2007 14:37:40 -0400 [thread overview]
Message-ID: <4640C374.3030403@manicmethod.com> (raw)
In-Reply-To: <1178644404.6056.85.camel@moss-spartans.epoch.ncsc.mil>
Stephen Smalley wrote:
> On Tue, 2007-05-08 at 12:11 -0400, Karl MacMillan wrote:
>
>> On Tue, 2007-05-08 at 11:48 -0400, Joshua Brindle wrote:
>>
> <snip>
>
>>>>>> +int sepol_policy_create(struct sepol_handle *h, struct sepol_policy **policy)
>>>>>> +{
>>>>>> + int ret;
>>>>>> + struct sepol_policy *x;
>>>>>> +
>>>>>> + *policy = NULL;
>>>>>> + x = calloc(1, sizeof(struct sepol_policy));
>>>>>>
>>>>>>
>>>>>>
>>>>> I am adverse to calloc used on structs, this implicitly initializes the
>>>>> struct and makes it harder to update the initial state. Why not have an
>>>>> explicit initializer?
>>>>>
>>>>>
>>>>>
>>>> I like calloc because you don't have to explicitly set all of the
>>>> members and the code tends (in my experience) to be more reliable in the
>>>> face of change because of this. I don't have a strong opinion though -
>>>> what do others think?
>>>>
>>>>
>>>>
>>> an initializer that does memset would be just as reliable in the face of
>>> change and have the additional advantage of being maintainable when
>>> initial state changes.
>>>
>>>
>> I think I'm missing something - what is the difference between malloc +
>> memset and calloc? And what do you mean by initializer?
>>
>
> I'd say stay with calloc here.
>
>
Umm, and then when the initial state changes we have to audit every user
of the struct to make sure its initialized correctly instead of just
doing it from the beginning and using an initialization function?
--
This message was distributed to subscribers of the selinux mailing list.
If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with
the words "unsubscribe selinux" without quotes as the message.
next prev parent reply other threads:[~2007-05-08 18:37 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-05-07 22:06 [PATCH] Basic policy representation Karl MacMillan
2007-05-08 14:45 ` Joshua Brindle
2007-05-08 15:08 ` Karl MacMillan
2007-05-08 15:48 ` Joshua Brindle
2007-05-08 16:11 ` Karl MacMillan
2007-05-08 16:47 ` Brian Pomerantz
2007-05-08 19:41 ` Karl MacMillan
2007-05-09 14:03 ` Karl MacMillan
2007-05-11 15:27 ` Joshua Brindle
2007-05-11 18:45 ` Karl MacMillan
2007-05-08 17:13 ` Stephen Smalley
2007-05-08 18:37 ` Joshua Brindle [this message]
2007-05-08 19:05 ` Stephen Smalley
2007-05-08 19:28 ` Joshua Brindle
2007-05-08 19:36 ` Karl MacMillan
2007-05-08 16:50 ` Stephen Smalley
2007-05-09 16:24 ` James Antill
2007-05-09 18:31 ` Karl MacMillan
2007-05-09 18:35 ` J. Tang
2007-05-09 19:22 ` Karl MacMillan
2007-05-09 22:46 ` J. Tang
2007-05-09 23:26 ` Karl MacMillan
2007-05-10 19:42 ` J. Tang
2007-05-10 20:00 ` Karl MacMillan
-- strict thread matches above, loose matches on Subject: below --
2007-05-10 17:56 Karl MacMillan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4640C374.3030403@manicmethod.com \
--to=method@manicmethod.com \
--cc=kmacmillan@mentalrootkit.com \
--cc=sds@tycho.nsa.gov \
--cc=selinux@tycho.nsa.gov \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.