public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
* [PATCH 1/1] fix: rebuild rootfs on change of USERS
@ 2025-04-11  9:44 'Felix Moessbauer' via isar-users
  2025-04-11  9:48 ` 'Jan Kiszka' via isar-users
  0 siblings, 1 reply; 4+ messages in thread
From: 'Felix Moessbauer' via isar-users @ 2025-04-11  9:44 UTC (permalink / raw)
  To: isar-users; +Cc: adriaan.schmidt, Felix Moessbauer, Clara Kowalsky

In case a change to the Isar created users is done, this currently
only re-triggers the do_rootfs_postprocess task. This task changes the
rootfs (e.g. home dirs are moved) and by that needs to operate on a
clean one. Otherwise old homedirs might still remain in the final rootfs
or move operations are not possible.

We fix this by ensuring that the do_rootfs_install task is executed
whenever a change to USERS is done. By that, we enter the
do_rootfs_postinstall with a clean rootfs.

Reported-by: Clara Kowalsky <clara.kowalsky@siemens.com>
Signed-off-by: Felix Moessbauer <felix.moessbauer@siemens.com>
---
 meta/classes/image-account-extension.bbclass | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta/classes/image-account-extension.bbclass b/meta/classes/image-account-extension.bbclass
index ea956cd5..8289db40 100644
--- a/meta/classes/image-account-extension.bbclass
+++ b/meta/classes/image-account-extension.bbclass
@@ -144,3 +144,7 @@ python image_postprocess_accounts() {
     image_create_groups(d)
     image_create_users(d)
 }
+
+# rebuild rootfs on change of USERS as homes might be moved / created
+# no need to depend on GROUPS as they don't create directories
+do_rootfs_install[vardeps] += "USERS"
-- 
2.39.5

-- 
You received this message because you are subscribed to the Google Groups "isar-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to isar-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/isar-users/20250411094412.3921975-1-felix.moessbauer%40siemens.com.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] fix: rebuild rootfs on change of USERS
  2025-04-11  9:44 [PATCH 1/1] fix: rebuild rootfs on change of USERS 'Felix Moessbauer' via isar-users
@ 2025-04-11  9:48 ` 'Jan Kiszka' via isar-users
  2025-04-11  9:52   ` 'MOESSBAUER, Felix' via isar-users
  0 siblings, 1 reply; 4+ messages in thread
From: 'Jan Kiszka' via isar-users @ 2025-04-11  9:48 UTC (permalink / raw)
  To: Felix Moessbauer, isar-users; +Cc: adriaan.schmidt, Clara Kowalsky

On 11.04.25 11:44, 'Felix Moessbauer' via isar-users wrote:
> In case a change to the Isar created users is done, this currently
> only re-triggers the do_rootfs_postprocess task. This task changes the
> rootfs (e.g. home dirs are moved) and by that needs to operate on a
> clean one. Otherwise old homedirs might still remain in the final rootfs
> or move operations are not possible.
> 
> We fix this by ensuring that the do_rootfs_install task is executed
> whenever a change to USERS is done. By that, we enter the
> do_rootfs_postinstall with a clean rootfs.
> 
> Reported-by: Clara Kowalsky <clara.kowalsky@siemens.com>
> Signed-off-by: Felix Moessbauer <felix.moessbauer@siemens.com>
> ---
>  meta/classes/image-account-extension.bbclass | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/meta/classes/image-account-extension.bbclass b/meta/classes/image-account-extension.bbclass
> index ea956cd5..8289db40 100644
> --- a/meta/classes/image-account-extension.bbclass
> +++ b/meta/classes/image-account-extension.bbclass
> @@ -144,3 +144,7 @@ python image_postprocess_accounts() {
>      image_create_groups(d)
>      image_create_users(d)
>  }
> +
> +# rebuild rootfs on change of USERS as homes might be moved / created
> +# no need to depend on GROUPS as they don't create directories
> +do_rootfs_install[vardeps] += "USERS"

Means, we are not caching after rootfs_install so far?

Jan

-- 
Siemens AG, Foundational Technologies
Linux Expert Center

-- 
You received this message because you are subscribed to the Google Groups "isar-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to isar-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/isar-users/1597c446-d9ad-4b45-b01a-490325a23d9a%40siemens.com.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] fix: rebuild rootfs on change of USERS
  2025-04-11  9:48 ` 'Jan Kiszka' via isar-users
@ 2025-04-11  9:52   ` 'MOESSBAUER, Felix' via isar-users
  2025-04-11 10:09     ` 'Clara Kowalsky' via isar-users
  0 siblings, 1 reply; 4+ messages in thread
From: 'MOESSBAUER, Felix' via isar-users @ 2025-04-11  9:52 UTC (permalink / raw)
  To: isar-users, Kiszka, Jan; +Cc: Schmidt, Adriaan, Kowalsky, Clara

On Fri, 2025-04-11 at 11:48 +0200, Jan Kiszka wrote:
> On 11.04.25 11:44, 'Felix Moessbauer' via isar-users wrote:
> > In case a change to the Isar created users is done, this currently
> > only re-triggers the do_rootfs_postprocess task. This task changes
> > the
> > rootfs (e.g. home dirs are moved) and by that needs to operate on a
> > clean one. Otherwise old homedirs might still remain in the final
> > rootfs
> > or move operations are not possible.
> > 
> > We fix this by ensuring that the do_rootfs_install task is executed
> > whenever a change to USERS is done. By that, we enter the
> > do_rootfs_postinstall with a clean rootfs.
> > 
> > Reported-by: Clara Kowalsky <clara.kowalsky@siemens.com>
> > Signed-off-by: Felix Moessbauer <felix.moessbauer@siemens.com>
> > ---
> >  meta/classes/image-account-extension.bbclass | 4 ++++
> >  1 file changed, 4 insertions(+)
> > 
> > diff --git a/meta/classes/image-account-extension.bbclass
> > b/meta/classes/image-account-extension.bbclass
> > index ea956cd5..8289db40 100644
> > --- a/meta/classes/image-account-extension.bbclass
> > +++ b/meta/classes/image-account-extension.bbclass
> > @@ -144,3 +144,7 @@ python image_postprocess_accounts() {
> >      image_create_groups(d)
> >      image_create_users(d)
> >  }
> > +
> > +# rebuild rootfs on change of USERS as homes might be moved /
> > created
> > +# no need to depend on GROUPS as they don't create directories
> > +do_rootfs_install[vardeps] += "USERS"
> 
> Means, we are not caching after rootfs_install so far?

Exactly. We cache the do_rootfs_install task (which runs before
do_rootfs_postprocess). A long term solution would be to not pass the
extracted rootfs between do_rootfs_install and do_rootfs_postprocess
but instead pass the clean tarball which is then extracted in the
postprocess task.

This however would break an interface, as currently tasks that run
after do_rootfs_install assume that the rootfs is available as tree.

Felix


> 
> Jan

-- 
Siemens AG
Linux Expert Center
Friedrich-Ludwig-Bauer-Str. 3
85748 Garching, Germany

-- 
You received this message because you are subscribed to the Google Groups "isar-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to isar-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/isar-users/c83ece790529e738eaede34e5fcd0d9ef104ba3a.camel%40siemens.com.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] fix: rebuild rootfs on change of USERS
  2025-04-11  9:52   ` 'MOESSBAUER, Felix' via isar-users
@ 2025-04-11 10:09     ` 'Clara Kowalsky' via isar-users
  0 siblings, 0 replies; 4+ messages in thread
From: 'Clara Kowalsky' via isar-users @ 2025-04-11 10:09 UTC (permalink / raw)
  To: Moessbauer, Felix (FT RPD CED OES-DE),
	isar-users, Kiszka, Jan (FT RPD CED)
  Cc: Schmidt, Adriaan (FT RPD CED EDC-DE)



On 11.04.25 11:52, Moessbauer, Felix (FT RPD CED OES-DE) wrote:
> On Fri, 2025-04-11 at 11:48 +0200, Jan Kiszka wrote:
>> On 11.04.25 11:44, 'Felix Moessbauer' via isar-users wrote:
>>> In case a change to the Isar created users is done, this currently
>>> only re-triggers the do_rootfs_postprocess task. This task changes
>>> the
>>> rootfs (e.g. home dirs are moved) and by that needs to operate on a
>>> clean one. Otherwise old homedirs might still remain in the final
>>> rootfs
>>> or move operations are not possible.
>>>
>>> We fix this by ensuring that the do_rootfs_install task is executed
>>> whenever a change to USERS is done. By that, we enter the
>>> do_rootfs_postinstall with a clean rootfs.
>>>
>>> Reported-by: Clara Kowalsky <clara.kowalsky@siemens.com>
>>> Signed-off-by: Felix Moessbauer <felix.moessbauer@siemens.com>
>>> ---
>>>   meta/classes/image-account-extension.bbclass | 4 ++++
>>>   1 file changed, 4 insertions(+)
>>>
>>> diff --git a/meta/classes/image-account-extension.bbclass
>>> b/meta/classes/image-account-extension.bbclass
>>> index ea956cd5..8289db40 100644
>>> --- a/meta/classes/image-account-extension.bbclass
>>> +++ b/meta/classes/image-account-extension.bbclass
>>> @@ -144,3 +144,7 @@ python image_postprocess_accounts() {
>>>       image_create_groups(d)
>>>       image_create_users(d)
>>>   }
>>> +
>>> +# rebuild rootfs on change of USERS as homes might be moved /
>>> created
>>> +# no need to depend on GROUPS as they don't create directories
>>> +do_rootfs_install[vardeps] += "USERS"

This is not enough. We also need to add the flags of the USER_foo to the 
vardeps as done in the beginning of the image-account-extension.bbclass.

BR,
Clara
>>
>> Means, we are not caching after rootfs_install so far?
> 
> Exactly. We cache the do_rootfs_install task (which runs before
> do_rootfs_postprocess). A long term solution would be to not pass the
> extracted rootfs between do_rootfs_install and do_rootfs_postprocess
> but instead pass the clean tarball which is then extracted in the
> postprocess task.
> 
> This however would break an interface, as currently tasks that run
> after do_rootfs_install assume that the rootfs is available as tree.
> 
> Felix
> 
> 
>>
>> Jan
> 

-- 
You received this message because you are subscribed to the Google Groups "isar-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to isar-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/isar-users/0a30eeaa-6a9e-4b14-bdd8-8c826bdc1fae%40siemens.com.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-04-11 10:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-04-11  9:44 [PATCH 1/1] fix: rebuild rootfs on change of USERS 'Felix Moessbauer' via isar-users
2025-04-11  9:48 ` 'Jan Kiszka' via isar-users
2025-04-11  9:52   ` 'MOESSBAUER, Felix' via isar-users
2025-04-11 10:09     ` 'Clara Kowalsky' via isar-users

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox