From the outside, much of the work going on at the One Laptop Per Child
project appears to be oriented toward hardware. Successive test versions
of the now well-known little green computer have been produced, each with
more powerful components and (presumably) fewer glitches than those which
came before. Work on getting suspend/resume functioning properly -
critical for the laptop to meet its power use goals - is heading toward the
final stages. It looks like a nice machine.
The software side of the OLPC project is just as interesting as the
hardware. The project has been occasionally criticized, though, for
concentrating on hardware and being
slow to get its software together. Much of this criticism is not really
warranted; work on the Sugar environment has been underway for quite some
time, and there are a number of interesting applications coming together
for this platform. In an area or two, however, it does seem like problems
are being addressed a little later than might have been optimal.
One of those areas, as evidenced by a series of discussions on the
project's mailing list, is the issue of software updates. The OLPC
project plans to deploy millions of laptops into environments where skilled
system administrators are scarce. It seems certain that, sooner or later,
there will be a need to update the software installed on those systems -
perhaps urgently. It is reasonable to expect that the children using these
laptops might just not be entirely diligent in checking for and installing
updates. So something with a relatively high degree of automation will be
required.
There are some additional complications which must be taken into account.
The OLPC project has decided to dispense with Linux-style package managers
in favor of a whole-image approach. OLPC has the resources to fund
some fairly strong servers and network bandwidth, but putting together the
resources which can handle pushing an update to millions of laptops at the
same time might still be a challenge. In fact, simply coping with
update-availability queries from that many laptops would require
significant resources. So how will OLPC handle software updates? It turns
out that they still don't really know.
Discussions started when Alexander Larsson showed up on the list with an
announcement that he was working on the software update task. His
proposal was an interesting combination of tools. In this scheme, a
system image looks a lot like a git repository; it contains a "manifest"
which (like a git index) has a list of files associated with SHA1 hashes of
their contents. Updating a system involves getting a new manifest, seeing
which files have changed, grabbing their contents, and dropping them in
place. The actual safe updating of the system image is done by way of the
Bitfrost security model which
was announced last February.
Alex's proposal uses the Avahi resource
discovery protocol to find updates. Once one system on a given network
(often the school server) obtains a copy of the update, it advertises it
via Avahi. All laptops on the network can then notice the availability of
the update and apply it. Once a laptop has the update, it, too, can make
that update available over the mesh network, facilitating the distribution
of the update to all systems on the net.
Ivan Krstić, the author of Bitfrost, has a
different approach. It starts by taking advantage of one of the OLPC's
more controversial features: the phone-home protocol. Laptops have to make
regular contact with special servers to check whether they have been
stolen; laptops which have been reported stolen can be shut down hard by
the anti-theft server. Ivan's update proposal has the laptops checking for
software updates while doing the "am I stolen?" check; the servers will be
able to reply that the laptop remains with its owner, but that it is running
old software and should update.
If the laptop needs an update, it will attempt to obtain the necessary
files (using rsync) from the school server. If these attempts fail for a
day or so, the laptop will eventually fall back to an "upstream master
server" for the update files.
The use of rsync allows updates to be transferred in a relatively
bandwidth-friendly manner. Only changed parts of changed files need be
transmitted over the net. It also has the advantage of being a known
quantity; there is no doubt that rsync can be made to work in this
setting. There is some concern that rsync tends to be resource intensive
on the server side, meaning that those upstream master servers would
probably have to be relatively powerful systems. If all goes well, though,
the load on those servers would be mitigated by distributing updates
through the school servers and staggering updates over time.
Ivan's proposal has also been criticized because it requires the use of
central servers rather than distributing updates through the mesh network.
He responds:
It requires a server because I think it's outrageous to consider
spending engineering time on inventing secure peer-to-peer OS
upgrades, never before done in a mainstream system, over a network
stack never before used in a mainstream system, two months before
we ship.
As an aside, this conversation also brought out some serious unhappiness
about the use of Linux-VServer
in Bitfrost. The (seemingly permanent) out-of-tree status of
Linux-VServer makes it harder to support over the long term; it seems that
the project may well move to a different solution once it has shipped its
first set of systems.
Back on the update front, yet
another proposal was posted by C. Scott Ananian. In this scheme, each
laptop will occasionally poll a master server to see if an update is
available; this poll might take the form of a DNS lookup. The more systems
there are on the local network, the less frequently these polls will
happen.
If a laptop discovers that an update is available, it will start pulling it
down from the master server. This update will be divided into a number of
small chunks, each of which is independently checksummed and signed. As
those chunks come in, the receiving laptop will send them out to a
multicast address on the local mesh; all other laptops in the area should
then see it and grab a copy as it goes by. Once all of the required pieces
have been received, the update can be applied. If a laptop misses a
segment as it goes by, it will eventually time out and start actively
grabbing (and rebroadcasting) pieces itself.
Which approach will be adopted is not clear; if the project has decided on a
proposal (or a combination of them), that decision has not been posted on a
public list. Time is tight, though, and a rock-solid solution will have to
be in place before the first production systems ship. It is, after all,
risky to count on being able to fix the remote update system (remotely)
after the fact.
For a more general view of the state of OLPC software, a look at this message from Walter Bender (the OLPC
president for software and content). A lot is happening, but a number of
desired features (including the famous "view source" key) will not be
functioning when the first systems ship. The OLPC software, he says, is a
work in progress - much like the rest of our software. The "progress" part
is clearly happening, though, and OLPC appears to be on course to deliver a
system which will bring computing power and network connectivity to
millions of children - and which will change our views of how that should
be done.
Comments (7 posted)
The GNU General Public License has always been a controversial document.
To some, it is at the core of what free software should be. To
others, it is a needlessly complex license (at best) or an intrusive and
unwelcome attempt to control how others use "free" software. Regardless of
how one feels about it, the GPL has, since version 2 was written,
become an important piece of regulation for the software industry. So it
is not surprising that the effort to create a new major release of the GPL
created some conflict. In fact, the surprising part might be just how
little conflict there was.
In early 2005, before the rewrite process really took off, Eben Moglen gave a talk which discussed what
was coming. There were, he said, four completely different sets of goals
which a new license had to meet:
- The GPL is a worldwide copyright license - a relatively rare thing
in an industry where licenses tend to be specifically written to a
particular country's laws.
- It is a code of industry conduct, describing how players in the free
software world can be expected to deal with each other. At this stage
in the development of the industry, a new code of conduct cannot be
imposed without extensive consultations with the affected companies.
- It is a political document, the constitution of the free software
movement.
- Finally, the GPL is very much the product of Richard Stallman's
thought. Mr. Moglen was clear from the outset that any revision of
the license would have to be acceptable to Richard Stallman.
That is a wide set of criteria to satisfy; this is not a challenge that
just anybody would want to take on.
Regardless of what one thinks of the final result, one cannot fault Eben
Moglen for not having thought hard about the process. Several committees
were formed to represent the interests of different constituencies.
Lawyers from all over the world were called together to work on language
with truly global applicability. Major industry players were brought
together on regular conference calls to discuss the progress of the
license. Several draft releases were made - each with supporting
documentation - and a mechanism by which anybody could make comments was
created. Meetings were held all over the planet.
The final result was
released on June 29. There are few who would call this result
perfect; Mr. Moglen says:
It is a little too long; it is a little too complex. It divides
cases where they might with some analytical clarity have been
merged, and it merges cases that might with some analytical clarity
have been divided. It isn't one man's work of art -- it's a
community's work of self-definition. And in that process, it
replicates an early version of a 21st century reality which is that
if in the 21st century what is produced is produced by communities,
not by individuals and not by factories, then under 21st century
conditions, what produces law is communities, not individuals and
not the factories we call legislatures.
The process would appear to have met all of the objectives set out for it.
The language of GPLv2 is very much oriented toward U.S. law; GPLv3 makes it
global. The free software industry, for the most part, has made a show of
welcoming the new license; this appears to be a code of conduct that it can
live with. The people who identify themselves strongly with the free
software movement seem to be quite happy with this license. And, one
expects, Richard Stallman is not overly displeased with what he got.
Others in the community have been very vocally unhappy with GPLv3. To
them, this license overreaches, trying to regulate how people use the
software instead of just how they distribute it. It has too many legal
kludges and special cases. It has, in the view of some people, failed to
live up to the Free Software Foundation's promise that revisions of the GPL
would be "similar in spirit" to GPLv2. Instead, they say, the FSF has
taken this rewrite as an opportunity to force its views on a world which
may not otherwise be ready to adopt those views.
The good news is that those people, and the projects they represent, need
not move to GPLv3. Version 2 of the license remains valid and usable;
despite its American-style language it appears to be enforceable over much
of the world. Nobody is trying to force any project to change to a license
it does not like.
Expect spirited discussions within some projects as they try to decide
whether to move to the new license or not. But the wider discussion is
done, and GPLv3 is a reality. It will take years to see what the effect of
this new license is. The patent licensing and anti-DRM clauses may well
cause some companies to reconsider the use of free software in their
products; in the worst case we could be seeing the beginning of the BSD
comeback. As worst cases go, that one can only be seen as relatively
benign.
This rewrite has probably gone as well as it could have, given the
parameters within which the FSF operates. Never before has the FSF sought
so much input - and actually acted on it. Whether one likes the end result
or not, it is appropriate to thank the FSF for putting in its best effort,
and especially to thank Eben Moglen for devoting so much of his life to
such a difficult project.
Comments (13 posted)
The 2007 [Ottawa] Linux Symposium has run its course. All of the
casualties from the closing party (perhaps made more numerous by the new
practice of sending around waiters with trays full of shots of tequila)
should have found their way home by now. Your editor has returned from
this year's event; here's his summary of what took place.
Greg Kroah-Hartman has been digging through the kernel source repositories
for statistics much like your editor has. The resulting numbers are
similar, though Greg has cranked through the full 2+ years of history in
the mainline git repository and,
thus, has a longer-term sort of view. Among other things, he concluded
that, in that time, the kernel developers have averaged almost three
changes per hour - every hour - during that time. About 2000 lines of code
are added every day. That is a pace of development which is matched by few
- if any - projects anywhere in the world. Greg also notes that the number
of developers
involved is growing with each release. This, he says, is a good sign; the
kernel community is bringing in new developers, important to keep the
process healthy.
Those interested in the detailed numbers can find them in Greg's paper (all
of the OLS papers are available
online). What many people found as interesting as the numbers,
however, was Greg's chain-of-trust poster. He took the signed-off-by path
from every patch in 2.6.22 and plotted all of them as a big graph. The
result, showing the approximately 900 developers who got patches into
2.6.22, was a plot some 40 feet long which crashed almost every
printer he tried to print it on. The plot for the entire git repository
history would have been nice, but, Greg says, it would have printed out at
250 feet.
One might have expected the plot to look like a nice, neat tree showing how
patches move up through the subsystem maintainers toward the mainline. In
fact, says Greg, it's "a mess." The interactions between kernel developers
are broad and do not fit into any sort of simple hierarchy; it is a loose
and flexible system.
Greg encouraged all developers represented on the plot to sign their little
bubbles; after the poster has run up some frequent-flier miles and acquired
enough signatures, it will be auctioned off for some good cause. Over the
course of the conference, just over 100 developers added their signatures.
Jon "maddog" Hall is not quite the ubiquitous figure at Linux conferences
that he was a few years ago. So it was nice to see him show up at OLS this
year. Maddog remains an engaging and amusing speaker. His topic this time
was how we are really going to get Linux systems to the masses - especially
in the urban environments which house much of the population in the
developing world. His answer is thin clients. He would like to see most
users working with small, low-power, fanless boxes with a nice screen and
the ability to talk with a central server which hosts software, user files,
and more. All running Linux, of course.
His vision for where this could go is ambitious: he would like to see
150 million of these thin clients deployed in Brazil, for example,
supported by as many as 2 million servers. This would bring
affordable computing to almost all of Brazil's city dwellers in an
ecologically sensible way while providing about 2 million technical
jobs. And it could all be done through private initiatives. If this sort
of development can be made to happen, says Maddog, we may truly achieve the
potential offered by computers and by free software.
Martin Bligh has an interesting job: he gets to find out what causes the
occasional machine to go wrong in the middle of the massive Google
network. It can be a real pain when, on occasion, one machine out of
thousands will crash or slow way down in a non-reproducible way. And only
in production, of course. Martin described a few such problems and how
they were tracked down through the use of a set of tracing tools used at
Google. Finding this kind of problem requires the ability to collect data
in a flexible manner without disrupting ongoing operations. Google has
developed the tools to do this sort of tracing; much of the resulting work
will be merged into LTTng project and
made available to the community.
The keynote speaker this year was James Bottomley, who spoke on the topics
of diversity and evolution. Diversity is the stream of new ideas which are
always being directed toward any active free software project; evolution is
the (sometimes harsh) process which selects the ideas which actually work.
Evolution in this context is selecting mostly on the patience and
innovation of the development community - not necessarily on the usefulness
of a given patch. KAIO (kernel asynchronous I/O support) was given as an
example here.
Maintainers play a vital part in the evolutionary process. The key to
being a good maintainer - one who helps move the community forward - is to
not reject changes out of hand but to work with developers to bring things
up to kernel standards. Being a maintainer, says James, is not about
saying "no"; it is about saying "no, but..."
Fragmentation is often raised by proprietary vendors as a way of scaring
people away from Linux. Bringing up fragmentation is a way of calling up
memories of the Unix wars, where fragmentation truly was a damaging
phenomenon for just about everybody involved. In the free software world,
though, we don't have fragmentation; instead, we have forking. James
claims that forking is an essential source of diversity; it's necessary for
continued innovation. No project, he says, is truly open unless it can
fork. In the end, openness and evolution drive forks to merge back
together, propagating the good ideas that resulted.
One final topic was nearly inevitable: closed-source drivers. Unlike some
other speakers, James was unwilling to characterize such drivers as being
either illegal or immoral. Instead, he looked at the costs involved in
keeping drivers closed source - costs for both the vendor and the users -
and concluded that closed-source drivers are simply "bloody stupid."
Happily, he says, some vendors are figuring this out. He announced that
Adaptec has become the first vendor to make use of the Linux Foundation's
NDA program to
provide information for the creation of free drivers for its products.
This year marks the first time in some years that the Kernel Summit was not
held just before the Linux Symposium started; many people expressed
concerns that kernel developers would stay away this year and OLS would not
be as interesting an event. There was a reduction in the number of
high-profile kernel developers this year, though quite a few were still in
evidence. The 100 signatures on the 2.6.22 poster make an effective
demonstration that OLS is able to attract kernel developers even without
the summit. One result of the change may be that a few more relatively new
and inexperienced developers were able to present this year; that should be
seen as a good thing.
Something that fewer people worried about, but which may have hurt the
conference more was the
absence of the desktop developers summit. Desktop developers were
generally absent, making the 2007 Linux Symposium, if anything, even more
kernel-centered than in previous years. Bringing together developers from
all over our wider community is an important function of a conference; one
hopes that the desktop folks will be back next year.
On the other hand, it was a pleasure to see the large "Linux on Cell"
contingent sent by Sony. The embracing of Linux by a company which has not
always been known for its openness can only be a good thing, and nobody was
complaining about the frequent giveaways of Playstation 3 systems -
though your editor, with his usual luck, failed to win one. The Cell
architecture seems destined to do interesting things, especially if the
companies which are working with it continue to promote and support the use
of Linux.
Back to the topic of next year:
2008 will be the tenth Linux Symposium; the organizers are clearly already
thinking about how they can make it the best one yet. There is thought of
moving it out of Ottawa to another Canadian city, and some
possible changes to the organization of the event, including a
track-oriented schedule and tutorial days, have been mentioned. This is
all good; OLS is probably due for a makeover after all of these years.
The 2007 event has shown that OLS can be successful on its own, without
leaning on the kernel summit; perhaps 2008 will show us where this
important community event can go in the future.
Comments (9 posted)
Page editor: Jonathan Corbet
Security
Honeypots,
hosts specifically set up to attract abuse, have been around since at least
1990. Typically, they have been used to detect attacks against various
network services, such as SMTP or SSH, but have not been very successful at
detecting a wide range of web application attacks. Open proxy honeypots
provide a more attractive target for malicious web traffic. Combining
several open proxies leads to the Distributed Open Proxy
Honeypots (DOPH) project which centralizes the monitoring of open proxies
installed all over the globe.
Standard honeypot techniques do not provide much of interest to a web
attacker, there is no high profile website to deface or high value
information stored there. The honeypot is unlikely to be able to respond
correctly to attempts to probe for vulnerable web applications. This makes
it difficult to gather information on the variety of web attacks that are
being used "in the wild". What is needed is a way to listen in on
malicious traffic, which is exactly what a proxy can do.
A proxy is simply a program that forwards traffic for a client. It sits in
the middle of the conversation, sending the client requests to the server
and forwarding the server replies back to the client. As far as the server
can see, it is only talking to the proxy system, it cannot tell that there
is a client elsewhere actually making the requests.
Proxies exist for a number of reasons, SOCKS is used to traverse
firewalls, whereas anonymizers are used to obscure the origin of web
traffic. There are also less visible proxies for load balancing or to get
around the "same origin" policy of the XmlHttpRequest Javascript
call. Most proxies have rules that govern who can use them and what
destinations are legitimate, without those rules, it becomes an open
proxy.
Probably the most famous open proxy was the default configuration of
sendmail (before version 8.9.0 in 1998) which would forward email to and
from any destination. Before the explosion of spam, it was considered
neighborly to relay mail for anyone who asked.
A system configured as an
open proxy for web traffic can record information about what it sees, with
luck some portion of it will be malicious. But there is a subtle problem
with this approach, the proxy host may be facilitating attacks on
vulnerable web servers, attacks which appear to originate with the proxy.
There is also concern
that recording the "conversation" could run afoul of wiretapping laws.
These problems require an open proxy honeypot, at least one that wants to
avoid legal trouble, to take some steps to minimize them.
Informing someone that you are recording is typically enough to avoid
wiretapping violations, so the DOPH project uses two separate warnings.
The first is on the proxy host's webpage, but since most malicious users
will never see that page, an additional warning was added to the HTTP
headers returned by the host. Typically only programs see those headers,
but it is, at least, an attempt to inform the recorded party.
A much more difficult problem is to stop "bad" traffic while proxying
"good" traffic. The proxy must seem to function correctly or it
will never be used, but honeypot operators are interested in stopping web
abuse, so they want to minimize the chances of being used in a real
attack. It is a very fine line, they want the bad traffic to study, but
not to pass on.
The DOPH project uses the ModSecurity module for the Apache
webserver to filter content based on a set of rules maintained by
Got Root. The rules specify the signature of various attacks which causes
ModSecurity to flag them as it inspects the website traffic. To try to
fool attackers and/or their programs, a HTTP 200 (OK) status is returned
when an attack is detected. The ModEvasive Apache
module is also used to detect and stop the proxy being used in a denial of
service attack.
Fully configured versions of the proxy are available from the project
as VMware images that can be run using the "free as in beer" VMware server
software. The DOPH proxy communicates back to a central data collection
server, sending the ModSecurity audit log information. This allows the
project to aggregate the information to determine what kinds of attacks are
currently ongoing. A Web
Security Threat Report (PDF), covering the first few months of the
project, was released in April. Seven, geographically diverse, hosts
participated during the first reporting period and the project is always
looking for more people, willing to run proxy hosts, to increase their data
gathering abilities.
Open proxies are used by attackers to mask their true location. It is
not uncommon for a chain of proxies to be used, as it makes it more
difficult to track back to the originator. If the chain crosses borders,
using proxy servers in different countries, each with its own set
of laws and procedures to access the server log files, it makes it that much
harder. The DOPH project does not specify how they publicize their
proxies, that might be giving too much information to attackers, but during
the first four months of 2007, their servers handled around a million web
requests of which roughly 20% was malicious or suspicious.
Attackers are likely to get more sophisticated over time and their tools
will get better at recognizing these kinds of techniques, but there is
still value in gathering the data. The proxy techniques will evolve as
well which will allow statistics to be gathered and new attacks to be
spotted. As the attackers recognize the threat, they will be more inclined
to use proxies in an attempt to mask their location, which provides a kind
of feedback loop driving more traffic to the honeypots. Open proxy
honeypots cannot and will not fool all of the attacks, but they provide a
way to study some of them.
Comments (1 posted)
New vulnerabilities
avahi: denial of service
| Package(s): | avahi |
CVE #(s): | CVE-2007-3372
|
| Created: | June 28, 2007 |
Updated: | December 23, 2008 |
| Description: |
Avahi is vulnerable to a local denial of service that can be caused by
making an erroneous call to the assert() function. |
| Alerts: |
|
Comments (none posted)
c-ares: DNS cache poisoning
| Package(s): | c-ares |
CVE #(s): | CVE-2007-3152
CVE-2007-3153
|
| Created: | June 28, 2007 |
Updated: | July 3, 2007 |
| Description: |
Versions of the c-ares DNS library below 1.4.0 are vulnerable to application
DNS cache poisoning caused by a predictable DNS "Transaction ID" field in a
DNS query. |
| Alerts: |
|
Comments (none posted)
firebird: buffer overflow
| Package(s): | firebird |
CVE #(s): | CVE-2007-3181
|
| Created: | July 2, 2007 |
Updated: | March 27, 2008 |
| Description: |
The Firebird DBMS has a buffer overflow vulnerability involving
the processing of connect requests with an overly large p_cnct_count
value. Remote attackers can send a specially crafted
request to the server in order to potentially execute arbitrary code with
the permissions of the Firebird user. |
| Alerts: |
|
Comments (none posted)
fireflier-server: unsafe temp file
| Package(s): | fireflier-server |
CVE #(s): | CVE-2007-2837
|
| Created: | July 2, 2007 |
Updated: | July 3, 2007 |
| Description: |
The fireflier-server interactive firewall rule creation tool
has a vulnerability in the way that it uses temporary files.
The vulnerability may be used locally to remove arbitrary files from
the system. |
| Alerts: |
|
Comments (none posted)
gimp: multiple vulnerabilities
| Package(s): | gimp |
CVE #(s): | CVE-2007-2949
|
| Created: | June 28, 2007 |
Updated: | February 27, 2008 |
| Description: |
The gimp image editor has several vulnerabilities, including
a problem where it can open PSD files with excessive dimensions
and a possible stack overflow in the Sunras loader. |
| Alerts: |
|
Comments (none posted)
glibc: integer overflow
| Package(s): | glibc |
CVE #(s): | CVE-2007-3508
|
| Created: | July 4, 2007 |
Updated: | July 4, 2007 |
| Description: |
The GNU C library (prior to version 2.5-r4) suffers from an integer overflow vulnerability in the dynamic linker which could, maybe, be exploited to run code with root privileges. |
| Alerts: |
|
Comments (1 posted)
gsambad: insecure temp files
| Package(s): | gsambad |
CVE #(s): | CVE-2007-2838
|
| Created: | July 2, 2007 |
Updated: | July 3, 2007 |
| Description: |
The gsambad GTK+ configuration tool for samba uses temporary files
unsafely. A local attacker can use this vulnerability to truncate
arbitrary files. |
| Alerts: |
|
Comments (none posted)
hiki: missing input sanitizing
| Package(s): | hiki |
CVE #(s): | CVE-2007-2836
|
| Created: | June 29, 2007 |
Updated: | July 3, 2007 |
| Description: |
Kazuhiro Nishiyama found a vulnerability in hiki, a Wiki engine written in
Ruby, which could allow a remote attacker to delete arbitrary files which
are writable to the Hiki user, via a specially crafted session parameter. |
| Alerts: |
|
Comments (none posted)
unicon-imc2: buffer overflow
| Package(s): | unicon-imc2 |
CVE #(s): | CVE-2007-2835
|
| Created: | July 2, 2007 |
Updated: | July 3, 2007 |
| Description: |
The unicon-imc2 Chinese input method library does not safely use an
environment variable. It is possible to use this to cause a
buffer overflow and execute arbitrary code. |
| Alerts: |
|
Comments (none posted)
wireshark: multiple vulnerabilities
| Package(s): | wireshark |
CVE #(s): | CVE-2007-3390
CVE-2007-3392
CVE-2007-3393
|
| Created: | June 28, 2007 |
Updated: | February 27, 2008 |
| Description: |
The wireshark network traffic analyzer has three vulnerabilities
that can be used to create a denial of service. These include
off-by-one overflows in the iSeries dissector, vulnerabilities in
the MMS and SSL dissectors that can cause an infinite loop and
an off-by-one overflow in the DHCP/BOOTP dissector. |
| Alerts: |
|
Comments (none posted)
Updated vulnerabilities
acroread: multiple vulnerabilities
| Package(s): | acroread |
CVE #(s): | CVE-2006-5857
CVE-2007-0045
CVE-2007-0046
|
| Created: | January 11, 2007 |
Updated: | October 26, 2009 |
| Description: |
Adobes acrobat reader has the following vulnerabilities:
The Adobe Reader Plugin has a cross site scripting vulnerability that
can be triggered by processes malformed URLs. Arbitrary JavaScript can
be served by a malicious web server, leading to a cross-site scripting
attack.
Maliciously crafted PDF files can be used to trigger two vulnerabilities,
if an attacker can trick a user into viewing the files, arbitrary code
can be executed with the user's privileges. |
| Alerts: |
|
Comments (1 posted)
apache2: information disclosure
| Package(s): | apache |
CVE #(s): | CVE-2007-1862
|
| Created: | June 20, 2007 |
Updated: | February 18, 2008 |
| Description: |
From the Mandriva advisory: "The recall_headers function in mod_mem_cache in Apache 2.2.4 does not
properly copy all levels of header data, which can cause Apache to
return HTTP headers containing previously-used data, which could be
used to obtain potentially sensitive information by unauthorized users." |
| Alerts: |
|
Comments (2 posted)
apache: multiple vulnerabilities
| Package(s): | apache |
CVE #(s): | CVE-2007-3304
CVE-2006-5752
|
| Created: | June 27, 2007 |
Updated: | February 18, 2008 |
| Description: |
The Apache HTTP Server did not verify that a process was an Apache child
process before sending it signals. A local attacker who has the ability to
run scripts on the Apache HTTP Server could manipulate the scoreboard and
cause arbitrary processes to be terminated, which could lead to a denial of
service. (CVE-2007-3304)
A flaw was found in the Apache HTTP Server mod_status module. Sites with
the server-status page publicly accessible and ExtendedStatus enabled were
vulnerable to a cross-site scripting attack. On Red Hat Enterprise Linux
the server-status page is not enabled by default and it is best practice to
not make this publicly available. (CVE-2006-5752) |
| Alerts: |
|
Comments (1 posted)
apache: cross-site scripting
| Package(s): | apache |
CVE #(s): | CVE-2006-3918
|
| Created: | August 9, 2006 |
Updated: | April 4, 2008 |
| Description: |
From the Red Hat advisory: "A bug was found in Apache where an invalid Expect header sent to the server
was returned to the user in an unescaped error message. This could
allow an attacker to perform a cross-site scripting attack if a victim was
tricked into connecting to a site and sending a carefully crafted Expect
header." |
| Alerts: |
|
Comments (none posted)
Asterisk: two SIP denial of service vulnerabilities
| Package(s): | Asterisk |
CVE #(s): | CVE-2007-1561
CVE-2007-1594
|
| Created: | April 3, 2007 |
Updated: | August 27, 2007 |
| Description: |
The Madynes research team at INRIA has discovered that Asterisk contains a
null pointer dereferencing error in the SIP channel when handling INVITE
messages. Furthermore qwerty1979 discovered that Asterisk 1.2.x fails to
properly handle SIP responses with return code 0. A remote attacker could
cause an Asterisk server listening for SIP messages to crash by sending a
specially crafted SIP message or answering with a 0 return code. |
| Alerts: |
|
Comments (none posted)
bugzilla: multiple vulnerabilities
| Package(s): | bugzilla |
CVE #(s): | CVE-2006-5453
CVE-2006-5454
CVE-2006-5455
|
| Created: | November 10, 2006 |
Updated: | August 28, 2007 |
| Description: |
Bugzilla has the following vulnerabilities:
Input data passed to various fields is not properly sanitized before
being passed back to users.
Users can gain unauthorized access to read attachment
descriptions while using diff mode.
HTTP GET and HTTP POST requests can be used to perform unauthorized
actions due to improper verification.
Input that is passed to showdependencygraph.cgi is not properly
sanitized before being returned to users. |
| Alerts: |
|
Comments (none posted)
clamav: denial of service
| Package(s): | clamav |
CVE #(s): | CVE-2007-2650
|
| Created: | June 5, 2007 |
Updated: | July 20, 2007 |
| Description: |
A vulnerability in the OLE2 parser in ClamAV was found that could allow a
remote attacker to cause a denial of service via resource consumption with
a carefully crafted OLE2 file. |
| Alerts: |
|
Comments (none posted)
cpio: arbitrary code execution
| Package(s): | cpio |
CVE #(s): | CVE-2005-4268
|
| Created: | January 2, 2006 |
Updated: | March 17, 2010 |
| Description: |
Richard Harms discovered that cpio did not sufficiently validate file
properties when creating archives. Files with e. g. a very large size
caused a buffer overflow. By tricking a user or an automatic backup
system into putting a specially crafted file into a cpio archive, a
local attacker could probably exploit this to execute arbitrary code
with the privileges of the target user (which is likely root in an
automatic backup system). |
| Alerts: |
|
Comments (none posted)
vixie-cron: privilege escalation
| Package(s): | cron |
CVE #(s): | CVE-2006-2607
|
| Created: | May 31, 2006 |
Updated: | June 1, 2009 |
| Description: |
The Vixie cron daemon does not check the return code from setuid(); if that call can be made to fail, a local attacker may be able to execute commands as root. |
| Alerts: |
|
Comments (1 posted)
cscope: buffer overflows
| Package(s): | cscope |
CVE #(s): | CVE-2006-4262
|
| Created: | October 2, 2006 |
Updated: | June 16, 2009 |
| Description: |
Will Drewry of the Google Security Team discovered several buffer overflows
in cscope, a source browsing tool, which might lead to the execution of
arbitrary code. |
| Alerts: |
|
Comments (none posted)
cscope: buffer overflows
| Package(s): | cscope |
CVE #(s): | CVE-2004-2541
|
| Created: | May 22, 2006 |
Updated: | June 19, 2009 |
| Description: |
A buffer overflow in Cscope 15.5, and possibly multiple overflows, allows
remote attackers to execute arbitrary code via a C file with a long
#include line that is later browsed by the target. |
| Alerts: |
|
Comments (1 posted)
cups: denial of service
| Package(s): | cups |
CVE #(s): | CVE-2007-0720
|
| Created: | March 26, 2007 |
Updated: | February 7, 2008 |
| Description: |
Previous versions of the cups package could be forced to hang via a client
"partially negotiating" an ssl connection. In this state, cups would not
allow other connections to be made, a denial of service. |
| Alerts: |
|
Comments (none posted)
Cyrus-SASL: DIGEST-MD5 Pre-Authentication Denial of Service
| Package(s): | cyrus-sasl |
CVE #(s): | CVE-2006-1721
|
| Created: | April 21, 2006 |
Updated: | September 4, 2007 |
| Description: |
Cyrus-SASL contains an unspecified vulnerability in the DIGEST-MD5
process that could lead to a Denial of Service. An attacker could possibly
exploit this vulnerability by sending specially crafted data stream to the
Cyrus-SASL server, resulting in a Denial of Service even if the attacker is
not able to authenticate. |
| Alerts: |
|
Comments (none posted)
denyhosts: denial of service
| Package(s): | denyhosts |
CVE #(s): | |
| Created: | June 21, 2007 |
Updated: | June 27, 2007 |
| Description: |
Version 2.6 of Denyhosts has a problem in the way it scans for
"User from .." messages in the log. The message is detected anywhere in
the log, not just in the middle of the "bad protocol version" log
where it belongs. This can be used to cause a denial of service. |
| Alerts: |
|
Comments (none posted)
dovecot: directory traversal
| Package(s): | dovecot |
CVE #(s): | CVE-2007-2231
|
| Created: | May 8, 2007 |
Updated: | May 21, 2008 |
| Description: |
Directory traversal vulnerability in index/mbox/mbox-storage.c in Dovecot
before 1.0.rc29, when using the zlib plugin, allows remote attackers to
read arbitrary gzipped (.gz) mailboxes (mbox files) via a .. (dot dot)
sequence in the mailbox name. |
| Alerts: |
|
Comments (none posted)
ekg: several vulnerabilities
| Package(s): | ekg |
CVE #(s): | CVE-2005-2448
CVE-2007-1663
CVE-2007-1664
CVE-2007-1665
|
| Created: | June 25, 2007 |
Updated: | July 2, 2007 |
| Description: |
Several endianess errors may allow remote attackers to cause a denial of
service. A memory leak in handling image messages may lead to denial of
service. A null pointer deference in the token OCR code may lead to denial
of service. A memory leak in the token OCR code may lead to denial of
service. |
| Alerts: |
|
Comments (none posted)
elinks: code execution
| Package(s): | elinks |
CVE #(s): | CVE-2007-2027
|
| Created: | May 7, 2007 |
Updated: | October 30, 2009 |
| Description: |
Arnaud Giersch discovered that elinks incorrectly attempted to load
gettext catalogs from a relative path. If a user were tricked into
running elinks from a specific directory, a local attacker could execute
code with user privileges. |
| Alerts: |
|
Comments (none posted)
elinks: arbitrary file access
| Package(s): | elinks |
CVE #(s): | CVE-2006-5925
|
| Created: | November 16, 2006 |
Updated: | October 22, 2009 |
| Description: |
The elinks text-mode browser has an arbitrary file access vulnerability
in the Elinks SMB protocol handler. If a user can be tricked into
visiting a specially crafted web page, arbitrary files may be read or
written with the user's permissions. |
| Alerts: |
|
Comments (none posted)
emacs21: denial of service
| Package(s): | emacs21 |
CVE #(s): | CVE-2007-2833
|
| Created: | June 21, 2007 |
Updated: | August 29, 2007 |
| Description: |
The emacs21 editor has a denial of service vulnerability.
emacs21 can be made to crash by viewing "certain types of images". |
| Alerts: |
|
Comments (none posted)
evolution: format string error
| Package(s): | evolution |
CVE #(s): | CVE-2007-1002
|
| Created: | March 27, 2007 |
Updated: | February 27, 2008 |
| Description: |
A format string error in the "write_html()" function in calendar/gui/
e-cal-component-memo-preview.c when displaying a memo's categories can
potentially be exploited to execute arbitrary code via a specially crafted
shared memo containing format specifiers. |
| Alerts: |
|
Comments (1 posted)
evolution-data-server: malicious server arbitrary code execution
| Package(s): | evolution-data-server |
CVE #(s): | CVE-2007-3257
|
| Created: | June 18, 2007 |
Updated: | November 7, 2007 |
| Description: |
From the GNOME
bugzilla: "The "SEQUENCE" value in the GData of the IMAP code
(camel-imap-folder.c) is converted from a string using strtol. This allows
for negative values. The imap_rescan uses this value as an int. It checks
for !seq and seq>summary.length. It doesn't check for seq <
0. Although seq is used as the index of an array." |
| Alerts: |
|
Comments (1 posted)
pop mail man-in-the-middle attacks
| Package(s): | evolution thunderbird mutt fetchmail |
CVE #(s): | CVE-2007-1558
|
| Created: | May 8, 2007 |
Updated: | July 3, 2009 |
| Description: |
The APOP protocol allows remote attackers to guess the first 3 characters
of a password via man-in-the-middle (MITM) attacks that use crafted message
IDs and MD5 collisions. NOTE: this design-level issue potentially affects
all products that use APOP, including (1) Thunderbird, (2) Evolution, (3)
mutt, and (4) fetchmail. |
| Alerts: |
|
Comments (none posted)
fail2ban: log injection vulnerability
| Package(s): | fail2ban |
CVE #(s): | |
| Created: | June 22, 2007 |
Updated: | July 30, 2007 |
| Description: |
fail2ban 0.8 is susceptible to a log injection vulnerability. See this
ossec.net entry for more information. |
| Alerts: |
|
Comments (none posted)
fail2ban: denial of service
| Package(s): | fail2ban |
CVE #(s): | CVE-2006-6302
|
| Created: | February 16, 2007 |
Updated: | July 30, 2007 |
| Description: |
fail2ban 0.7.4 and earlier does not properly parse sshd logs file, which
allows remote attackers to add arbitrary hosts to the /etc/hosts.deny file
and cause a denial of service by adding arbitrary IP addresses to the sshd
log file, as demonstrated by logging in to ssh using a login name
containing certain strings with an IP address. |
| Alerts: |
|
Comments (3 posted)
file: integer overflow
| Package(s): | file |
CVE #(s): | CVE-2007-2799
|
| Created: | June 1, 2007 |
Updated: | October 19, 2007 |
| Description: |
Colin Percival from FreeBSD reported that the previous fix for the
file_printf() buffer overflow introduced a new integer overflow. A remote
attacker could entice a user to run the file program on an overly large
file (more than 1Gb) that would trigger an integer overflow on 32-bit
systems, possibly leading to the execution of arbitrary code with the
rights of the user running file. |
| Alerts: |
|
Comments (3 posted)
firefox: multiple vulnerabilities
| Package(s): | firefox mozilla seamonkey thunderbird |
CVE #(s): | CVE-2007-1362
CVE-2007-2867
CVE-2007-2868
CVE-2007-2869
CVE-2007-2870
CVE-2007-2871
|
| Created: | June 4, 2007 |
Updated: | August 29, 2007 |
| Description: |
Various flaws were discovered in the layout and JavaScript engines. By
tricking a user into opening a malicious web page, an attacker could
execute arbitrary code with the user's privileges. (CVE-2007-2867,
CVE-2007-2868)
A flaw was discovered in the form autocomplete feature. By tricking a user
into opening a malicious web page, an attacker could cause a persistent
denial of service. (CVE-2007-2869)
Nicolas Derouet discovered flaws in cookie handling. By tricking a user
into opening a malicious web page, an attacker could force the browser to
consume large quantities of disk or memory while processing long cookie
paths. (CVE-2007-1362)
A flaw was discovered in the same-origin policy handling of the
addEventListener JavaScript method. A malicious web site could exploit
this to modify the contents, or steal confidential data (such as
passwords), of other web pages. (CVE-2007-2870)
Chris Thomas discovered a flaw in XUL popups. A malicious web site
could exploit this to spoof or obscure portions of the browser UI,
such as the location bar. (CVE-2007-2871) |
| Alerts: |
|
Comments (3 posted)
freetype: arbitrary code execution
| Package(s): | freetype |
CVE #(s): | CVE-2007-2754
|
| Created: | May 24, 2007 |
Updated: | June 1, 2010 |
| Description: |
The Freetype font rendering library versions 2.3.4 and below
has an integer sign error. Remote attackers may be able to
create a specially crafted TrueType Font file with a negative
n_points value that will cause an integer overflow and heap-based
buffer overflow, allowing the execution of arbitrary code. |
| Alerts: |
|
Comments (none posted)
freetype: integer overflows
| Package(s): | freetype |
CVE #(s): | CVE-2006-0747
CVE-2006-1861
CVE-2006-2493
CVE-2006-2661
CVE-2006-3467
|
| Created: | June 8, 2006 |
Updated: | June 1, 2010 |
| Description: |
The FreeType library has several integer overflow vulnerabilities.
If a user can be tricked into installing a specially
crafted font file, arbitrary code can be executed with the privilege
of the user. |
| Alerts: |
|
Comments (none posted)
gcc: file overwrite vulnerability
| Package(s): | gcc |
CVE #(s): | CVE-2006-3619
|
| Created: | September 6, 2006 |
Updated: | March 14, 2008 |
| Description: |
The fastjar utility found in the GNU compiler collection does not perform adequate file path checking, allowing the creation or overwriting of files outside of the current directory tree. |
| Alerts: |
|
Comments (none posted)
gd: buffer overflow
| Package(s): | gd |
CVE #(s): | CVE-2007-0455
|
| Created: | February 7, 2007 |
Updated: | November 18, 2009 |
| Description: |
The gd graphics library contains a buffer overflow which could enable a remote attacker to execute arbitrary code. Note that various other packages include code from gd and could also be vulnerable. |
| Alerts: |
|
Comments (2 posted)
gd: denial of service
| Package(s): | gd |
CVE #(s): | CVE-2007-2756
|
| Created: | June 14, 2007 |
Updated: | February 28, 2008 |
| Description: |
Libgd2 has a denial of service vulnerability involving the incorrect
validation of PNG callback results. If an application that is linked
against libgd2 is used to process a specially-crafted PNG file,
a denial of service involving CPU resource consumption can be
caused. |
| Alerts: |
|
Comments (none posted)
gedit: format string vulnerability
| Package(s): | gedit |
CVE #(s): | CAN-2005-1686
|
| Created: | June 9, 2005 |
Updated: | February 5, 2009 |
| Description: |
A format string vulnerability has been discovered in gedit. Calling
the program with specially crafted file names caused a buffer
overflow, which could be exploited to execute arbitrary code with the
privileges of the gedit user. |
| Alerts: |
|
Comments (1 posted)
grip: buffer overflow
| Package(s): | grip |
CVE #(s): | CAN-2005-0706
|
| Created: | March 10, 2005 |
Updated: | November 19, 2008 |
| Description: |
Grip, a CD ripper, has a buffer overflow vulnerability that can
occur when the CDDB server returns more than 16 matches. |
| Alerts: |
|
Comments (none posted)
gzip: multiple vulnerabilities
| Package(s): | gzip |
CVE #(s): | CVE-2006-4334
CVE-2006-4335
CVE-2006-4336
CVE-2006-4337
CVE-2006-4338
|
| Created: | September 19, 2006 |
Updated: | January 20, 2010 |
| Description: |
Tavis Ormandy of the Google Security Team discovered two denial of service
flaws in the way gzip expanded archive files. If a victim expanded a
specially crafted archive, it could cause the gzip executable to hang or
crash.
Tavis Ormandy of the Google Security Team discovered several code execution
flaws in the way gzip expanded archive files. If a victim expanded a
specially crafted archive, it could cause the gzip executable to crash or
execute arbitrary code. |
| Alerts: |
|
Comments (1 posted)
HelixPlayer: arbitrary code execution
| Package(s): | HelixPlayer |
CVE #(s): | CVE-2007-3410
|
| Created: | June 27, 2007 |
Updated: | September 17, 2007 |
| Description: |
A buffer overflow flaw was found in the way HelixPlayer processed
Synchronized Multimedia Integration Language (SMIL) files. It was possible
for a malformed SMIL file to execute arbitrary code with the permissions of
the user running HelixPlayer. (CVE-2007-3410) |
| Alerts: |
|
Comments (1 posted)
horde-kronolith: local file inclusion
| Package(s): | horde-kronolith |
CVE #(s): | CVE-2006-6175
|
| Created: | January 17, 2007 |
Updated: | March 7, 2008 |
| Description: |
Kronolith contains a mistake in lib/FBView.php where a raw, unfiltered
string is used instead of a sanitized string to view local files. An
authenticated attacker could craft an HTTP GET request that uses directory
traversal techniques to execute any file on the web server as PHP code,
which could allow information disclosure or arbitrary code execution with
the rights of the user running the PHP application (usually the webserver
user). |
| Alerts: |
|
Comments (none posted)
ImageMagick: integer overflows
| Package(s): | imagemagick |
CVE #(s): | CVE-2007-1797
|
| Created: | April 4, 2007 |
Updated: | August 11, 2009 |
| Description: |
Multiple integer overflows in ImageMagick before 6.3.3-5 allow remote
attackers to execute arbitrary code via (1) a crafted DCM image, which
results in a heap-based overflow in the ReadDCMImage function, or (2) the
(a) colors or (b) comments field in a crafted XWD image, which results in a
heap-based overflow in the ReadXWDImage function, different issues than
CVE-2007-1667. |
| Alerts: |
|
Comments (none posted)
imlib2: arbitrary code execution
| Package(s): | imlib2 |
CVE #(s): | CVE-2006-4806
CVE-2006-4807
CVE-2006-4808
CVE-2006-4809
|
| Created: | November 6, 2006 |
Updated: | August 13, 2007 |
| Description: |
M. Joonas Pihlaja discovered that imlib2 did not sufficiently verify the
validity of ARGB, JPG, LBM, PNG, PNM, TGA, and TIFF images. If a user
were tricked into viewing or processing a specially crafted image with
an application that uses imlib2, the flaws could be exploited to execute
arbitrary code with the user's privileges. |
| Alerts: |
|
Comments (none posted)
ipsec-tools: denial of service
| Package(s): | ipsec-tools |
CVE #(s): | CVE-2007-1841
|
| Created: | April 10, 2007 |
Updated: | August 28, 2007 |
| Description: |
A flaw was discovered in the IPSec key exchange server "racoon". Remote
attackers could send a specially crafted packet and disrupt established
IPSec tunnels, leading to a denial of service. |
| Alerts: |
|
Comments (none posted)
jasper: denial of service
| Package(s): | jasper |
CVE #(s): | CVE-2007-2721
|
| Created: | June 1, 2007 |
Updated: | April 19, 2010 |
| Description: |
The jpc_qcx_getcompparms function in jpc/jpc_cs.c could allow remote
user-assisted attackers to cause a denial of service (crash) and possibly
corrupt the heap via malformed image files. |
| Alerts: |
|
Comments (none posted)
java: multiple vulnerabilities
| Package(s): | java |
CVE #(s): | CVE-2006-4339
CVE-2006-4790
CVE-2006-6731
CVE-2006-6736
CVE-2006-6737
CVE-2006-6745
|
| Created: | January 18, 2007 |
Updated: | June 4, 2010 |
| Description: |
java has multiple vulnerabilities, these include:
an RSA exponent padding attack vulnerability, two vulnerabilities
which allow untrusted applets to access data in other applets,
vulnerabilities that involve applets gaining privileges due to
serialization bugs in the JRE and buffer overflows in the java image
handling routines that can give attackers read/write/execute capabilities
for local files. |
| Alerts: |
|
Comments (1 posted)
kdebase: information leak
| Package(s): | kdebase |
CVE #(s): | CVE-2007-2022
|
| Created: | June 13, 2007 |
Updated: | September 19, 2007 |
| Description: |
A problem with the interaction between the Flash Player and the Konqueror
web browser was found. The problem could lead to key presses leaking to the
Flash Player applet instead of the browser.
NOTE: CVE number may be incorrect, see CVE entry |
| Alerts: |
|
Comments (1 posted)
kdelibs: kate backup file permission leak
| Package(s): | kdelibs kate kwrite |
CVE #(s): | CAN-2005-1920
|
| Created: | July 19, 2005 |
Updated: | September 21, 2010 |
| Description: |
Kate / Kwrite, as shipped with KDE 3.2.x up to including 3.4.0, creates a file backup before saving a modified file. These backup files are created with default permissions, even if the original file had more strict permissions set. See this advisory for more information. |
| Alerts: |
|
Comments (1 posted)
kdelibs: cross-site scripting
| Package(s): | kdelibs konqeror |
CVE #(s): | CVE-2007-0537
|
| Created: | February 5, 2007 |
Updated: | August 13, 2007 |
| Description: |
Konqueror 3.5.5 does not properly parse HTML comments, which allows remote
attackers to conduct cross-site scripting (XSS) attacks and bypass some XSS
protection schemes by embedding certain HTML tags within a comment, a
related issue to CVE-2007-0478. |
| Alerts: |
|
Comments (none posted)
kernel: denial of service
| Package(s): | kernel |
CVE #(s): | CVE-2007-1357
|
| Created: | April 16, 2007 |
Updated: | November 14, 2007 |
| Description: |
The atalk_sum_skb function in AppleTalk for Linux kernel 2.6.x before
2.6.21, and possibly 2.4.x, allows remote attackers to cause a denial of
service (crash) via an AppleTalk frame that is shorter than the specified
length, which triggers a BUG_ON call when an attempt is made to perform a
checksum. |
| Alerts: |
|
Comments (none posted)
kernel: denial of service
| Package(s): | kernel |
CVE #(s): | CVE-2006-4623
|
| Created: | October 18, 2006 |
Updated: | November 14, 2007 |
| Description: |
The kernel DVB layer can be caused to crash with maliciously-formatted unidirectional lightweight encapsulation (ULE) data. |
| Alerts: |
|
Comments (none posted)
kernel: multiple vulnerabilities
| Package(s): | kernel |
CVE #(s): | CVE-2007-0005
CVE-2007-1000
|
| Created: | March 15, 2007 |
Updated: | November 14, 2007 |
| Description: |
The Linux kernel has a boundary error problem with the
Omnikey CardMan 4040 driver read and write functions. This can be used
to cause a buffer overflow and possible execution or arbitrary code with
kernel privileges.
The ipv6_getsockopt_sticky function in
net/ipv6/ipv6_sockglue.c is vulnerable to a NULL pointer dereference.
Local users can use this to crash the kernel or to disclose kernel
memory. |
| Alerts: |
|
Comments (none posted)
kernel: denial of service
| Package(s): | kernel |
CVE #(s): | CVE-2006-0007
CVE-2007-0006
|
| Created: | February 15, 2007 |
Updated: | November 14, 2007 |
| Description: |
Linux kernel versions from 2.6.9 to 2.6.20 have a denial of service
vulnerability. A remote attacker can cause the key_alloc_serial
function's key serial number collision avoidance code to have a
null dereference, resulting in a crash. |
| Alerts: |
|
Comments (1 posted)
kernel: denial of service
| Package(s): | kernel |
CVE #(s): | CVE-2006-4535
CVE-2006-4538
|
| Created: | September 18, 2006 |
Updated: | January 5, 2009 |
| Description: |
Sridhar Samudrala discovered a local denial of service vulnerability
in the handling of SCTP sockets. By opening such a socket with a
special SO_LINGER value, a local attacker could exploit this to crash
the kernel. (CVE-2006-4535)
Kirill Korotaev discovered that the ELF loader on the ia64 and sparc
platforms did not sufficiently verify the memory layout. By attempting
to execute a specially crafted executable, a local user could exploit
this to crash the kernel. (CVE-2006-4538) |
| Alerts: |
|
Comments (none posted)
kernel: denial of service
| Package(s): | kernel |
CVE #(s): | CVE-2007-1861
CVE-2007-2242
|
| Created: | May 1, 2007 |
Updated: | February 8, 2008 |
| Description: |
The netlink protocol has an infinite recursion bug that allows users to
cause a kernel crash. Also the IPv6 protocol allows remote attackers to
cause a denial of service via crafted IPv6 type 0 route headers
(IPV6_RTHDR_TYPE_0) that create network amplification between two routers. |
| Alerts: |
|
Comments (none posted)
kernel: denial of service by memory consumption
| Package(s): | kernel |
CVE #(s): | CVE-2006-2936
|
| Created: | July 17, 2006 |
Updated: | November 14, 2007 |
| Description: |
The ftdi_sio driver (usb/serial/ftdi_sio.c) in Linux kernel 2.6.x up to
2.6.17, and possibly later versions, allows local users to cause a denial
of service (memory consumption) by writing more data to the serial port
than the driver can handle, which causes the data to be queued. |
| Alerts: |
|
Comments (none posted)
kernel: denial of service
| Package(s): | kernel |
CVE #(s): | CVE-2007-0772
|
| Created: | February 23, 2007 |
Updated: | November 14, 2007 |
| Description: |
The Linux kernel before 2.6.20.1 allows remote attackers to cause a denial
of service (oops) via a crafted NFSACL 2 ACCESS request that triggers a free
of an incorrect pointer. |
| Alerts: |
|
Comments (none posted)
kernel: several vulnerabilities
| Package(s): | kernel |
CVE #(s): | CVE-2007-1353
CVE-2007-2451
CVE-2007-2453
|
| Created: | June 11, 2007 |
Updated: | March 6, 2008 |
| Description: |
Ilja van Sprundel discovered that Bluetooth setsockopt calls could leak
kernel memory contents via an uninitialized stack buffer. A local attacker
could exploit this flaw to view sensitive kernel information.
(CVE-2007-1353)
The GEODE-AES driver did not correctly initialize its encryption key.
Any data encrypted using this type of device would be easily compromised.
(CVE-2007-2451)
The random number generator was hashing a subset of the available
entropy, leading to slightly less random numbers. Additionally, systems
without an entropy source would be seeded with the same inputs at boot
time, leading to a repeatable series of random numbers. (CVE-2007-2453) |
| Alerts: |
|
Comments (none posted)
kernel: several vulnerabilities
| Package(s): | kernel |
CVE #(s): | CVE-2006-5823
CVE-2006-6054
CVE-2007-1592
|
| Created: | June 12, 2007 |
Updated: | March 21, 2011 |
| Description: |
A flaw in the cramfs file system allows invalid compressed data to cause
memory corruption (CVE-2006-5823)
A flaw in the ext2 file system allows an invalid inode size to cause a
denial of service (system hang) (CVE-2006-6054)
A flaw in IPV6 flow label handling allows a local user to cause a denial of
service (crash) (CVE-2007-1592) |
| Alerts: |
|
Comments (none posted)
kernel: denial of service
| Package(s): | kernel |
CVE #(s): | CVE-2006-5757
|
| Created: | November 13, 2006 |
Updated: | November 14, 2007 |
| Description: |
From the MOKB-05-11-2006
advisory: "The ISO9660 filesystem handling code of the Linux
2.6.x kernel fails to properly handle corrupted data structures, leading to
an exploitable denial of service condition. This particular vulnerability
seems to be caused by a race condition and a signedness issue. When
performing a read operation on a corrupted ISO9660 fs stream, the
isofs_get_blocks() function will enter an infinite loop when
__find_get_block_slow() callback from sb_getblk() fails ("due to various
races between file io on the block device and getblk")." |
| Alerts: |
|
Comments (none posted)
kernel: denial of service
| Package(s): | kernel |
CVE #(s): | CVE-2006-2935
CVE-2006-4145
CVE-2006-3745
|
| Created: | September 1, 2006 |
Updated: | July 30, 2008 |
| Description: |
Previous versions of the kernel package are subject to several
vulnerabilities. Certain malformed UDF filesystems can cause the system to
crash (denial of service). Malformed CDROM firmware or USB storage devices
(such as USB keys) could cause system crash (denial of service), and if
they were intentionally malformed, can cause arbitrary code to run with
elevated privileges. In addition, the SCTP protocol is subject to a remote
system crash (denial of service) attack. |
| Alerts: |
|
Comments (none posted)
kernel: multiple vulnerabilities
| Package(s): | kernel |
CVE #(s): | CVE-2006-5749
CVE-2006-4814
CVE-2006-6106
|
| Created: | January 5, 2007 |
Updated: | January 8, 2009 |
| Description: |
A security issue has been reported in Linux kernel due to an error in
drivers/isdn/i4l/isdn_ppp.c as the "isdn_ppp_ccp_reset_alloc_state()"
function never initializes an event timer before scheduling it with the
"add_timer()" function.
The mincore function in the kernel does not properly lock access to user
space, which has unspecified impact and attack vectors, possibly related to
a deadlock.
Another vulnerability has been reported in Linux kernel caused by a
boundary error within the handling of incoming CAPI messages in
net/bluetooth/cmtp/capi.c. This can be exploited to overwrite certain
Kernel data structures. |
| Alerts: |
|
Comments (none posted)
krb5: multiple vulnerabilities
| Package(s): | krb5 |
CVE #(s): | CVE-2007-2442
CVE-2007-2443
CVE-2007-2798
|
| Created: | June 27, 2007 |
Updated: | March 24, 2008 |
| Description: |
David Coffey discovered an uninitialized pointer free flaw in the
RPC library used by kadmind. A remote unauthenticated attacker who
could access kadmind could trigger the flaw causing kadmind to crash
or possibly execute arbitrary code (CVE-2007-2442).
David Coffey also discovered an overflow flaw in the same RPC library.
A remote unauthenticated attacker who could access kadmind could
trigger the flaw causing kadmind to crash or possibly execute arbitrary
code (CVE-2007-2443).
Finally, a stack buffer overflow vulnerability was found in kadmind
that allowed an unauthenticated user able to access kadmind the
ability to trigger the vulnerability and possibly execute arbitrary
code (CVE-2007-2798). |
| Alerts: |
|
Comments (none posted)
krb5: uninitialized pointers
| Package(s): | krb5 |
CVE #(s): | CVE-2006-6143
CVE-2006-3084
|
| Created: | January 10, 2007 |
Updated: | July 7, 2010 |
| Description: |
The kdamind daemon can, in some situations, perform operations on uninitialized pointers. This bug could conceivably open up the system to a code execution attack by an unauthenticated remote attacker, but it appears to be difficult to exploit. See this advisory for details. |
| Alerts: |
|
Comments (1 posted)
krb5: local privilege escalation
| Package(s): | krb5 |
CVE #(s): | CVE-2006-3083
|
| Created: | August 9, 2006 |
Updated: | July 7, 2010 |
| Description: |
Some kerberos applications fail to check the results of setuid() calls, with the result that, if that call fails, they could continue to execute as root after thinking they had switched to a nonprivileged user. A local attacker who can cause these calls to fail (through resource exhaustion, presumably) could exploit this bug to gain root privileges. |
| Alerts: |
|
Comments (none posted)
krb5: multiple vulnerabilities
| Package(s): | krb5 |
CVE #(s): | CVE-2007-0956
CVE-2007-0957
CVE-2007-1216
|
| Created: | April 3, 2007 |
Updated: | March 24, 2008 |
| Description: |
A flaw was found in the username handling of the MIT krb5 telnet daemon
(telnetd). A remote attacker who can access the telnet port of a target
machine could log in as root without requiring a password. MIT krb5 Security Advisory 2007-001
Buffer overflows were found which affect the Kerberos KDC and the kadmin
server daemon. A remote attacker who can access the KDC could exploit this
bug to run arbitrary code with the privileges of the KDC or kadmin server
processes. MIT krb5 Security Advisory
2007-002
A double-free flaw was found in the GSSAPI library used by the kadmin
server daemon. MIT krb5 Security Advisory
2007-003 |
| Alerts: |
|
Comments (none posted)
ktorrent: incorrect validation
| Package(s): | ktorrent |
CVE #(s): | CVE-2007-1384
CVE-2007-1385
CVE-2007-1799
|
| Created: | March 13, 2007 |
Updated: | October 24, 2007 |
| Description: |
Bryan Burns of Juniper Networks discovered that KTorrent did not
correctly validate the destination file paths nor the HAVE statements
sent by torrent peers. A malicious remote peer could send specially
crafted messages to overwrite files or execute arbitrary code with user
privileges. |
| Alerts: |
|
Comments (1 posted)
lftp: shell command execution
| Package(s): | lftp |
CVE #(s): | CVE-2007-2348
|
| Created: | May 4, 2007 |
Updated: | September 16, 2009 |
| Description: |
mirror --script in lftp before 3.5.9 does not properly quote shell
metacharacters, which might allow remote user-assisted attackers to execute
shell commands via a malicious script. NOTE: it is not clear whether this
issue crosses security boundaries, since the script already supports
commands such as "get" which could overwrite executable files. |
| Alerts: |
|
Comments (none posted)
libexif: integer overflow
| Package(s): | libexif |
CVE #(s): | CVE-2007-2645
|
| Created: | June 1, 2007 |
Updated: | February 11, 2008 |
| Description: |
Integer overflow in the exif_data_load_data_entry function in exif-data.c
in libexif before 0.6.14 allows user-assisted remote attackers to cause a
denial of service (crash) or possibly execute arbitrary code via crafted
EXIF data, involving the (1) doff or (2) s variable. |
| Alerts: |
|
Comments (none posted)
libexif: integer overflow
| Package(s): | libexif |
CVE #(s): | CVE-2007-4168
CVE-2006-4168
|
| Created: | June 15, 2007 |
Updated: | July 3, 2007 |
| Description: |
An integer overflow flaw was found in the way libexif parses EXIF image
tags. If a victim opens a carefully crafted EXIF image file it could cause
the application linked against libexif to execute arbitrary code or crash. |
| Alerts: |
|
Comments (none posted)
libgtop2: buffer overflow
| Package(s): | libgtop2 |
CVE #(s): | CVE-2007-0235
|
| Created: | January 15, 2007 |
Updated: | August 9, 2007 |
| Description: |
The /proc parsing routines in libgtop are vulnerable to a buffer overflow.
If an attacker can run a process in a specially crafted long
path then trick a user into running gnome-system-monitor,
arbitrary code can be executed with the user's privileges. |
| Alerts: |
|
Comments (none posted)
libmodplug: boundary errors
| Package(s): | libmodplug |
CVE #(s): | CVE-2006-4192
|
| Created: | December 11, 2006 |
Updated: | May 4, 2011 |
| Description: |
Luigi Auriemma has reported various boundary errors in load_it.cpp and
a boundary error in the "CSoundFile::ReadSample()" function in
sndfile.cpp. A remote attacker can entice a user to read crafted modules
or ITP files, which may trigger a buffer overflow resulting in the
execution of arbitrary code with the privileges of the user running the
application. |
| Alerts: |
|
Comments (none posted)
libphp-phpmailer: command execution
| Package(s): | libphp-phpmailer |
CVE #(s): | CVE-2007-3215
|
| Created: | June 20, 2007 |
Updated: | June 25, 2009 |
| Description: |
libphp-phpmailer does not do sufficient input validation, enabling shell command injection attacks. |
| Alerts: |
|
Comments (none posted)
libpng: denial of service
| Package(s): | libpng |
CVE #(s): | CVE-2007-2445
|
| Created: | May 17, 2007 |
Updated: | March 23, 2009 |
| Description: |
Libpng can be crashed when processing malformed PNG files.
It may also be possible to exploit this vulnerability to execute arbitrary
code. |
| Alerts: |
|
Comments (none posted)
libpng: buffer overflow
| Package(s): | libpng |
CVE #(s): | CVE-2006-3334
|
| Created: | July 19, 2006 |
Updated: | December 15, 2008 |
| Description: |
In pngrutil.c, the function png_decompress_chunk() allocates
insufficient space for an error message, potentially overwriting stack
data, leading to a buffer overflow. |
| Alerts: |
|
Comments (none posted)
libpng: heap based buffer overflow
| Package(s): | libpng |
CVE #(s): | CVE-2006-0481
|
| Created: | February 13, 2006 |
Updated: | December 15, 2008 |
| Description: |
A heap based buffer overflow bug was found in the way libpng strips alpha
channels from a PNG image. An attacker could create a carefully crafted PNG
image file in such a way that it could cause an application linked with
libpng to crash or execute arbitrary code when the file is opened by a
victim. |
| Alerts: |
|
Comments (1 posted)
libtiff: buffer overflow
| Package(s): | libtiff |
CVE #(s): | CVE-2006-2193
|
| Created: | June 15, 2006 |
Updated: | September 1, 2008 |
| Description: |
The t2p_write_pdf_string function in libtiff 3.8.2 and earlier is vulnerable
to a buffer overflow. Attackers can use a TIFF file with UTF-8 characters
in the DocumentName tag to overflow a buffer, causing a denial of service,
and possibly the execution of arbitrary code. |
| Alerts: |
|
Comments (none posted)
libxml2 - arbitrary code execution
| Package(s): | libxml2 |
CVE #(s): | CAN-2004-0110
|
| Created: | February 26, 2004 |
Updated: | August 19, 2009 |
| Description: |
Yuuichi Teranishi discovered a flaw in libxml2 versions prior to 2.6.6.
When fetching a remote resource via FTP or HTTP, libxml2 uses special
parsing routines. These routines can overflow a buffer if passed a very
long URL. If an attacker is able to find an application using libxml2 that
parses remote resources and allows them to influence the URL, then this
flaw could be used to execute arbitrary code. |
| Alerts: |
|
Comments (none posted)
libxml2: multiple buffer overflows
| Package(s): | libxml2 |
CVE #(s): | CAN-2004-0989
|
| Created: | October 28, 2004 |
Updated: | August 19, 2009 |
| Description: |
libxml2 prior to version 2.6.14 has multiple buffer overflow
vulnerabilities, if a local user passes a specially crafted
FTP URL, arbitrary code may be executed. |
| Alerts: |
|
Comments (none posted)
lookup-el: insecure temporary file
| Package(s): | lookup-el |
CVE #(s): | CVE-2007-0237
|
| Created: | March 19, 2007 |
Updated: | December 10, 2007 |
| Description: |
Tatsuya Kinoshita discovered that Lookup, a search interface to electronic
dictionaries on emacsen, creates a temporary file in an insecure fashion
when the ndeb-binary feature is used, which allows a local attacker to
craft a symlink attack to overwrite arbitrary files. |
| Alerts: |
|
Comments (none posted)
lynx: arbitrary command execution
| Package(s): | lynx |
CVE #(s): | CVE-2005-2929
|
| Created: | November 14, 2005 |
Updated: | September 14, 2009 |
| Description: |
An arbitrary command execute bug was found in the lynx "lynxcgi:" URI
handler. An attacker could create a web page redirecting to a malicious URL
which could execute arbitrary code as the user running lynx. |
| Alerts: |
|
Comments (none posted)
madwifi-ng: multiple vulnerabilities
| Package(s): | madwifi-ng |
CVE #(s): | CVE-2007-2830
CVE-2007-2829
CVE-2007-2831
|
| Created: | June 12, 2007 |
Updated: | June 29, 2007 |
| Description: |
Md Sohail Ahmad from AirTight Networks has discovered a divison by zero in
the ath_beacon_config() function (CVE-2007-2830). The vendor has corrected
an input validation error in the ieee80211_ioctl_getwmmparams() and
ieee80211_ioctl_getwmmparams() functions(CVE-207-2831), and an input
sanitization error when parsing nested 802.3 Ethernet frame lengths
(CVE-2007-2829). |
| Alerts: |
|
Comments (1 posted)
maradns: memory leaks
| Package(s): | maradns |
CVE #(s): | CVE-2007-3114
CVE-2007-3115
CVE-2007-3116
|
| Created: | June 25, 2007 |
Updated: | June 27, 2007 |
| Description: |
Memory leak in server/MaraDNS.c in MaraDNS before 1.2.12.05, and 1.3.x
before 1.3.03, allows remote attackers to cause a denial of service (memory
consumption) via unspecified vectors. (CVE-2007-3114)
Multiple memory leaks in server/MaraDNS.c in MaraDNS before 1.2.12.06, and
1.3.x before 1.3.05, allow remote attackers to cause a denial of service
(memory consumption) via reverse lookups or requests for records in a class
other than Internet. (CVE-2007-3115)
Memory leak in server/MaraDNS.c in MaraDNS 1.2.12.06 and 1.3.05 allows
remote attackers to cause a denial of service (memory consumption) via
unspecified vectors. (CVE-2007-3116) |
| Alerts: |
|
Comments (none posted)
mod_jk: proxy bypass
| Package(s): | mod_jk |
CVE #(s): | CVE-2007-1860
|
| Created: | May 30, 2007 |
Updated: | March 7, 2008 |
| Description: |
From the Red Hat advisory: "Versions of mod_jk before 1.2.23 decoded request URLs by default inside
Apache httpd and forwarded the encoded URL to Tomcat, which itself did a
second decoding. If Tomcat was used behind mod_jk and configured to only
proxy some contexts, an attacker could construct a carefully crafted HTTP
request to work around the context restriction and potentially access
non-proxied content." |
| Alerts: |
|
Comments (none posted)
mod_perl: denial of service
| Package(s): | mod_perl |
CVE #(s): | CVE-2007-1349
|
| Created: | April 12, 2007 |
Updated: | July 18, 2007 |
| Description: |
Apache mod_perl versions 1.30 and below have a vulnerability in
PerlRun.pm and RegistryCooker.pm. PATH_INFO is not properly
escaped before use in a regular expression, allowing remote attackers
to cause a denial of service via a specially crafted URI. |
| Alerts: |
|
Comments (1 posted)
moin: arbitrary JavaScript execution
| Package(s): | moin |
CVE #(s): | CVE-2007-2423
|
| Created: | May 8, 2007 |
Updated: | March 10, 2008 |
| Description: |
A flaw was discovered in MoinMoin's error reporting when using the
AttachFile action. By tricking a user into viewing a crafted MoinMoin
URL, an attacker could execute arbitrary JavaScript as the current
MoinMoin user, possibly exposing the user's authentication information
for the domain where MoinMoin was hosted. |
| Alerts: |
|
Comments (none posted)
mplayer: buffer overflow
| Package(s): | mplayer |
CVE #(s): | CVE-2007-1246
|
| Created: | March 8, 2007 |
Updated: | April 1, 2008 |
| Description: |
MPlayer versions up to 1.0rc1 have a buffer overflow in the
loader/dmo/DMO_VideoDecoder.c DMO_VideoDecoder_Open function.
user-assisted remote attackers can use this to create a buffer overflow
and possibly execute arbitrary code. |
| Alerts: |
|
Comments (none posted)
mplayer: buffer overflow
| Package(s): | mplayer |
CVE #(s): | CVE-2007-2948
|
| Created: | June 20, 2007 |
Updated: | July 25, 2007 |
| Description: |
The CDDB code in mplayer suffers from "insufficient boundary checks," leaving it exposed to buffer overruns. |
| Alerts: |
|
Comments (none posted)
mydns: buffer overflows
| Package(s): | mydns |
CVE #(s): | CVE-2007-2362
|
| Created: | May 23, 2007 |
Updated: | December 17, 2007 |
| Description: |
Multiple buffer overflows in MyDNS allow remote attackers to cause a denial of
service (daemon crash) and possibly execution of arbitrary code. |
| Alerts: |
|
Comments (none posted)
mysql: denial of service
| Package(s): | mysql |
CVE #(s): | CVE-2007-1420
|
| Created: | March 22, 2007 |
Updated: | May 21, 2008 |
| Description: |
MySQL subselect queries using "ORDER BY" can be used by an attacker with
access to a MySQL instance in order to create an intermittent denial
of service. |
| Alerts: |
|
Comments (none posted)
mysql: format string bug
| Package(s): | mysql |
CVE #(s): | CVE-2006-3469
|
| Created: | July 21, 2006 |
Updated: | July 30, 2008 |
| Description: |
Jean-David Maillefer discovered a format string bug in the
date_format() function's error reporting. By calling the function with
invalid arguments, an authenticated user could exploit this to crash
the server. |
| Alerts: |
|
Comments (none posted)
MySQL: privilege violations
| Package(s): | mysql |
CVE #(s): | CVE-2006-4031
CVE-2006-4226
|
| Created: | August 25, 2006 |
Updated: | July 30, 2008 |
| Description: |
MySQL 4.1 before 4.1.21 and 5.0 before 5.0.24 allows a local user to access
a table through a previously created MERGE table, even after the user's
privileges are revoked for the original table, which might violate intended
security policy (CVE-2006-4031).
MySQL 4.1 before 4.1.21, 5.0 before 5.0.25, and 5.1 before 5.1.12, when run
on case-sensitive filesystems, allows remote authenticated users to create
or access a database when the database name differs only in case from a
database for which they have permissions (CVE-2006-4226). |
| Alerts: |
|
Comments (none posted)
MySQL: logging bypass
| Package(s): | mysql |
CVE #(s): | CVE-2006-0903
|
| Created: | April 4, 2006 |
Updated: | May 21, 2008 |
| Description: |
MySQL 5.0.18 and earlier allows local users to bypass logging mechanisms
via SQL queries that contain the NULL character, which are not properly
handled by the mysql_real_query function. NOTE: this issue was originally
reported for the mysql_query function, but the vendor states that since
mysql_query expects a null character, this is not an issue for mysql_query. |
| Alerts: |
|
Comments (2 posted)
nbd: arbitrary code execution
| Package(s): | nbd |
CVE #(s): | CVE-2005-3534
|
| Created: | January 6, 2006 |
Updated: | March 7, 2011 |
| Description: |
Kurt Fitzner discovered that the NBD (network block device) server did not
correctly verify the maximum size of request packets. By sending specially
crafted large request packets, a remote attacker who is allowed to access
the server could exploit this to execute arbitrary code with root
privileges. |
| Alerts: |
|
Comments (none posted)
ncompress: buffer underflow
| Package(s): | ncompress |
CVE #(s): | CVE-2006-1168
|
| Created: | August 10, 2006 |
Updated: | February 21, 2012 |
| Description: |
The ncompress compression utility has a missing boundary check.
A local user can use a maliciously created file to cause a
a .bss buffer underflow. |
| Alerts: |
|
Comments (none posted)
OpenOffice.org: arbitrary code execution
| Package(s): | openoffice.org |
CVE #(s): | CVE-2007-0245
|
| Created: | June 13, 2007 |
Updated: | June 12, 2008 |
| Description: |
A specially crafted RTF file could cause the
filter to overwrite data on the heap, which may lead to the execution
of arbitrary code. |
| Alerts: |
|
Comments (none posted)
OpenSSH: denial of service
| Package(s): | openssh |
CVE #(s): | CVE-2006-4925
CVE-2006-5052
|
| Created: | October 6, 2006 |
Updated: | November 15, 2007 |
| Description: |
packet.c in ssh in OpenSSH allows remote attackers to cause a denial of
service (crash) by sending an invalid protocol sequence with
USERAUTH_SUCCESS before NEWKEYS, which causes newkeys[mode] to be NULL.
An unspecified vulnerability in portable OpenSSH before 4.4, when running
on some platforms, allows remote attackers to determine the validity of
usernames via unknown vectors involving a GSSAPI "authentication abort." |
| Alerts: |
|
Comments (none posted)
openssh: remote denial of service
| Package(s): | openssh |
CVE #(s): | CVE-2006-4924
CVE-2006-5051
|
| Created: | September 27, 2006 |
Updated: | September 17, 2008 |
| Description: |
Openssh 4.4 fixes some
security issues, including a pre-authentication denial of service, an
unsafe signal hander and on portable OpenSSH a GSSAPI authentication abort
could be used to determine the validity of usernames on some platforms. |
| Alerts: |
|
Comments (none posted)
pam: privilege escalation
| Package(s): | pam |
CVE #(s): | CVE-2007-1716
|
| Created: | June 12, 2007 |
Updated: | November 15, 2007 |
| Description: |
A flaw was found in the way pam_console set console device permissions. It
was possible for various console devices to retain ownership of the console
user after logging out, possibly leaking information to an unauthorized
user. |
| Alerts: |
|
Comments (none posted)
perl-Net-DNS: predictable id sequence
| Package(s): | perl-Net-DNS |
CVE #(s): | CVE-2007-3377
|
| Created: | June 26, 2007 |
Updated: | March 12, 2008 |
| Description: |
Net::DNS before 0.60 uses an id sequence that is predictable and the same
in all child processes. |
| Alerts: |
|
Comments (none posted)
php: multiple vulnerabilities
| Package(s): | php |
CVE #(s): | CVE-2007-1001
CVE-2007-1285
CVE-2007-1718
CVE-2007-1583
|
| Created: | April 16, 2007 |
Updated: | December 4, 2007 |
| Description: |
A denial of service flaw was found in the way PHP processed a deeply nested
array. A remote attacker could cause the PHP interpreter to crash by
submitting an input variable with a deeply nested array. (CVE-2007-1285)
A flaw was found in the way the mbstring extension set global variables. A
script which used the mb_parse_str() function to set global variables could
be forced to enable the register_globals configuration option, possibly
resulting in global variable injection. (CVE-2007-1583)
A flaw was discovered in the way PHP's mail() function processed header
data. If a script sent mail using a Subject header containing a string from
an untrusted source, a remote attacker could send bulk e-mail to unintended
recipients. (CVE-2007-1718)
A heap based buffer overflow flaw was discovered in PHP's gd extension. A
script that could be forced to process WBMP images from an untrusted source
could result in arbitrary code execution. (CVE-2007-1001) |
| Alerts: |
|
Comments (none posted)
php: several vulnerabilities
| Package(s): | php |
CVE #(s): | CVE-2006-4481
CVE-2006-4484
CVE-2006-4485
|
| Created: | September 8, 2006 |
Updated: | June 13, 2008 |
| Description: |
The file_exists and imap_reopen functions in PHP before 5.1.5 do not check
for the safe_mode and open_basedir settings, which allows local users to
bypass the settings (CVE-2006-4481).
A buffer overflow in the LWZReadByte function in ext/gd/libgd/gd_gif_in.c
in the GD extension in PHP before 5.1.5 allows remote attackers to have an
unknown impact via a GIF file with input_code_size greater than
MAX_LWZ_BITS, which triggers an overflow when initializing the table array
(CVE-2006-4484).
The stripos function in PHP before 5.1.5 has unknown impact and attack
vectors related to an out-of-bounds read (CVE-2006-4485). |
| Alerts: |
|
Comments (1 posted)
php: multiple vulnerabilities
| Package(s): | php |
CVE #(s): | CVE-2007-2872
CVE-2007-2756
|
| Created: | June 1, 2007 |
Updated: | January 29, 2008 |
| Description: |
According to a vendor release announcement multiple
security enhancements and fixes were fixed in version 5.2.3 of the
programming language PHP. |
| Alerts: |
|
Comments (none posted)
php: buffer overflows
| Package(s): | php |
CVE #(s): | CVE-2006-5465
|
| Created: | November 3, 2006 |
Updated: | January 18, 2010 |
| Description: |
The Hardened-PHP Project discovered buffer overflows in
htmlentities/htmlspecialchars internal routines to the PHP Project. Of
course the whole purpose of these functions is to be filled with user
input. (The overflow can only be when UTF-8 is used) |
| Alerts: |
|
Comments (none posted)
php: several vulnerabilities
| Package(s): | php |
CVE #(s): | CVE-2007-1864
CVE-2007-2509
CVE-2007-2510
|
| Created: | May 8, 2007 |
Updated: | July 18, 2007 |
| Description: |
A heap buffer overflow flaw was found in the PHP 'xmlrpc' extension. A
PHP script which implements an XML-RPC server using this extension
could allow a remote attacker to execute arbitrary code as the 'apache'
user. Note that this flaw does not affect PHP applications using the
pure-PHP XML_RPC class provided in /usr/share/pear. (CVE-2007-1864)
A flaw was found in the PHP 'ftp' extension. If a PHP script used this
extension to provide access to a private FTP server, and passed untrusted
script input directly to any function provided by this extension, a remote
attacker would be able to send arbitrary FTP commands to the server.
(CVE-2007-2509)
A buffer overflow flaw was found in the PHP 'soap' extension, regarding the
handling of an HTTP redirect response when using the SOAP client provided
by this extension with an untrusted SOAP server. No mechanism to trigger
this flaw remotely is known. (CVE-2007-2510) |
| Alerts: |
|
Comments (none posted)
phpbb2: missing input sanitizing
| Package(s): | phpbb2 |
CVE #(s): | CVE-2006-1896
|
| Created: | May 22, 2006 |
Updated: | February 11, 2008 |
| Description: |
It was discovered that phpbb2, a web based bulletin board, insufficiently
sanitizes values passed to the "Font Color 3" setting, which might lead to
the execution of injected code by admin users. |
| Alerts: |
|
Comments (none posted)
phpbb2: multiple vulnerabilities
| Package(s): | phpbb2 |
CVE #(s): | CVE-2005-3310
CVE-2005-3415
CVE-2005-3416
CVE-2005-3417
CVE-2005-3418
CVE-2005-3419
CVE-2005-3420
CVE-2005-3536
CVE-2005-3537
|
| Created: | December 22, 2005 |
Updated: | February 11, 2008 |
| Description: |
The phpbb2 web forum has a number of vulnerabilities including:
a web script injection problem, a protection mechanism bypass, a
security check bypass, a remote global variable bypass, cross site
scripting vulnerabilities, an SQL injection vulnerability,
a remote regular expression modification problem, missing input
sanitizing, and a missing request validation problem. |
| Alerts: |
|
Comments (none posted)
phpPgAdmin: cross-site scripting
| Package(s): | phppgadmin |
CVE #(s): | CVE-2007-2865
CVE-2007-5728
|
| Created: | June 18, 2007 |
Updated: | January 21, 2009 |
| Description: |
A cross-site scripting (XSS) vulnerability in sqledit.php in phpPgAdmin
4.1.1 allows remote attackers to inject arbitrary web script or HTML via
the server parameter. |
| Alerts: |
|
Comments (none posted)
phpwiki: remote code execution
| Package(s): | phpwiki |
CVE #(s): | CVE-2007-2024
CVE-2007-2025
|
| Created: | May 17, 2007 |
Updated: | September 12, 2007 |
| Description: |
The phpwiki Upload page does not properly check the extension of a file.
This can be used by a remote attacker to upload a specially crafted PHP file
and execute arbitrary PHP code with the privileges of the PhpWiki user. |
| Alerts: |
|
Comments (none posted)
pptpd: denial of service
| Package(s): | pptpd |
CVE #(s): | CVE-2007-0244
|
| Created: | May 9, 2007 |
Updated: | September 3, 2007 |
| Description: |
The PoPToP server daemon contains a bug which allows an attacker to tear down a connection through a malformed GRE packet. |
| Alerts: |
|
Comments (none posted)
proftpd: authentication bypass
| Package(s): | proftpd |
CVE #(s): | CVE-2007-2165
|
| Created: | June 21, 2007 |
Updated: | November 5, 2007 |
| Description: |
The ProFTPD Auth API has an authentication bypass vulnerability.
When multiple simultaneous authentication modules are configured,
the ProFTPD module that checks authentication is not necessarily
the same module that retrieves authentication data. This can be
used by remote attackers to bypass the authentication system.
|
| Alerts: |
|
Comments (none posted)
pulseaudio: denial of service
| Package(s): | pulseaudio |
CVE #(s): | CVE-2007-1804
|
| Created: | May 30, 2007 |
Updated: | March 10, 2008 |
| Description: |
The pulseaudio network code suffers from a denial of service vulnerability exploitable by an unauthenticated attacker. |
| Alerts: |
|
Comments (none posted)
python: information disclosure
| Package(s): | python |
CVE #(s): | CVE-2007-2052
|
| Created: | May 9, 2007 |
Updated: | July 30, 2009 |
| Description: |
Python 2.4 and 2.5 contain a bug in PyLocale_strxfrm() which could enable an attacker to read portions of unrelated memory. |
| Alerts: |
|
Comments (none posted)
qemu: multiple vulnerabilities
Comments (none posted)
qt: "/../" injection
| Package(s): | qt |
CVE #(s): | CVE-2007-0242
|
| Created: | April 4, 2007 |
Updated: | September 13, 2007 |
| Description: |
Andreas Nolden discovered a bug in qt3, where the UTF8 decoder does not
reject overlong sequences, which can cause "/../" injection or (in the case
of konqueror) a "<script>" tag injection. |
| Alerts: |
|
Comments (2 posted)
quagga: denial of service
| Package(s): | quagga |
CVE #(s): | CVE-2007-1995
|
| Created: | May 2, 2007 |
Updated: | July 3, 2007 |
| Description: |
A malicious peer can cause the quagga routing daemon to crash by sending a properly crafted BGP packet. |
| Alerts: |
|
Comments (none posted)
quake: buffer overflow
| Package(s): | quake3-bin |
CVE #(s): | CVE-2006-2236
|
| Created: | May 10, 2006 |
Updated: | January 12, 2009 |
| Description: |
Games based on the Quake 3 engine are vulnerable to a buffer overflow exploitable by a hostile game server. |
| Alerts: |
|
Comments (none posted)
redhat-cluster-suite: arbitrary code execution
| Package(s): | redhat-cluster-suite |
CVE #(s): | CVE-2007-3374
|
| Created: | June 25, 2007 |
Updated: | June 28, 2007 |
| Description: |
Fabio Massimo Di Nitto discovered that cman did not correctly validate the
size of client messages. A local user could send a specially crafted
message and execute arbitrary code with cluster manager privileges or crash
the manager, leading to a denial of service. |
| Alerts: |
|
Comments (2 posted)
rpm: arbitrary code execution
| Package(s): | rpm |
CVE #(s): | CVE-2006-5466
|
| Created: | November 6, 2006 |
Updated: | August 28, 2007 |
| Description: |
An error was found in the RPM library's handling of query reports. In
some locales, certain RPM packages would cause the library to crash. If
a user was tricked into querying a specially crafted RPM package, the
flaw could be exploited to execute arbitrary code with the user's
privileges. |
| Alerts: |
|
Comments (none posted)
Mozilla: multiple vulnerabilities
| Package(s): | seamonkey firefox thunderbird |
CVE #(s): | CVE-2006-6077
CVE-2007-0008
CVE-2007-0009
CVE-2007-0775
CVE-2007-0777
CVE-2007-0778
CVE-2007-0779
CVE-2007-0780
CVE-2007-0800
CVE-2007-0981
CVE-2007-0995
CVE-2007-0996
|
| Created: | February 26, 2007 |
Updated: | July 23, 2007 |
| Description: |
Several flaws were found in the way SeaMonkey processed certain malformed
JavaScript code. A malicious web page could execute JavaScript code in such
a way that may result in SeaMonkey crashing or executing arbitrary code as
the user running SeaMonkey. (CVE-2007-0775, CVE-2007-0777)
Several cross-site scripting (XSS) flaws were found in the way SeaMonkey
processed certain malformed web pages. A malicious web page could display
misleading information which may result in a user unknowingly divulging
sensitive information such as a password. (CVE-2006-6077, CVE-2007-0995,
CVE-2007-0996)
A flaw was found in the way SeaMonkey cached web pages on the local disk. A
malicious web page may be able to inject arbitrary HTML into a browsing
session if the user reloads a targeted site. (CVE-2007-0778)
A flaw was found in the way SeaMonkey displayed certain web content. A
malicious web page could generate content which could overlay user
interface elements such as the hostname and security indicators, tricking a
user into thinking they are visiting a different site. (CVE-2007-0779)
Two flaws were found in the way SeaMonkey displayed blocked popup windows.
If a user can be convinced to open a blocked popup, it is possible to read
arbitrary local files, or conduct an XSS attack against the user.
(CVE-2007-0780, CVE-2007-0800)
Two buffer overflow flaws were found in the Network Security Services (NSS)
code for processing the SSLv2 protocol. Connecting to a malicious secure
web server could cause the execution of arbitrary code as the user running
SeaMonkey. (CVE-2007-0008, CVE-2007-0009)
A flaw was found in the way SeaMonkey handled the "location.hostname" value
during certain browser domain checks. This flaw could allow a malicious web
site to set domain cookies for an arbitrary site, or possibly perform an
XSS attack. (CVE-2007-0981) |
| Alerts: |
|
Comments (1 posted)
snort: remote arbitrary code execution
| Package(s): | snort |
CVE #(s): | CVE-2006-5276
|
| Created: | March 2, 2007 |
Updated: | September 7, 2007 |
| Description: |
The Snort intrusion detection system is vulnerable to a buffer overflow
in the DCE/RPC preprocessor code. Remote attackers can send
specially crafted fragmented SMB or DCE/RPC packets which can be used
to allow the the remote execution of arbitrary code. |
| Alerts: |
|
Comments (1 posted)
Sun JDK/JRE: multiple vulnerabilities
| Package(s): | Sun JDK/JRE |
CVE #(s): | CVE-2007-2435
CVE-2007-2788
CVE-2007-2789
|
| Created: | June 1, 2007 |
Updated: | April 18, 2008 |
| Description: |
An unspecified vulnerability involving an "incorrect use of system
classes" was reported by the Fujitsu security team. Additionally, Chris
Evans from the Google Security Team reported an integer overflow
resulting in a buffer overflow in the ICC parser used with JPG or BMP
files, and an incorrect open() call to /dev/tty when processing certain
BMP files. |
| Alerts: |
|
Comments (none posted)
tcpdump: denial of service
| Package(s): | tcpdump |
CVE #(s): | CVE-2007-1218
|
| Created: | March 5, 2007 |
Updated: | November 15, 2007 |
| Description: |
Off-by-one buffer overflow in the parse_elements function in the 802.11
printer code (print-802_11.c) for tcpdump 3.9.5 and earlier allows remote
attackers to cause a denial of service (crash) via a crafted 802.11
frame. NOTE: this was originally referred to as heap-based, but it might be
stack-based. |
| Alerts: |
|
Comments (none posted)
tetex: buffer overflow
| Package(s): | tetex |
CVE #(s): | CVE-2007-0650
|
| Created: | May 8, 2007 |
Updated: | May 13, 2008 |
| Description: |
A buffer overflow in the open_sty function in mkind.c for makeindex 2.14 in
teTeX might allow user-assisted remote attackers to overwrite files and
possibly execute arbitrary code via a long filename. NOTE: other overflows
exist but might not be exploitable, such as a heap-based overflow in the
check_idx function. |
| Alerts: |
|
Comments (1 posted)
tinymux: buffer overflow
| Package(s): | tinymux |
CVE #(s): | CVE-2007-1655
|
| Created: | June 25, 2007 |
Updated: | June 27, 2007 |
| Description: |
duskwave discovered that tinymux, a text-based multi-user virtual world
server, performs insufficient boundary checks when working with
user-supplied data, which might lead to the execution of arbitrary code. |
| Alerts: |
|
Comments (none posted)
tomcat: directory traversal
| Package(s): | tomcat |
CVE #(s): | CVE-2007-0450
|
| Created: | May 2, 2007 |
Updated: | February 27, 2008 |
| Description: |
Versions of tomcat prior to 5.5.22 do not properly filter filename separator characters, enabling information disclosure attacks. |
| Alerts: |
|
Comments (none posted)
vixie-cron: weak permissions may cause errors
| Package(s): | vixie-cron |
CVE #(s): | CVE-2007-1856
|
| Created: | April 17, 2007 |
Updated: | December 4, 2007 |
| Description: |
During an internal audit, Raphael Marichez of the Gentoo Linux Security
Team found that Vixie Cron has weak permissions set on Gentoo, allowing
for a local user to create hard links to system and users cron files,
while a st_nlink check in database.c will generate a superfluous error. |
| Alerts: |
|
Comments (1 posted)
webmin: cross-site scripting
| Package(s): | webmin |
CVE #(s): | CVE-2007-3156
|
| Created: | June 25, 2007 |
Updated: | July 6, 2007 |
| Description: |
Multiple cross-site scripting (XSS) vulnerabilities were discovered in
pam_login.cgi in webmin prior to version 1.350, which could allow a remote
attacker to inject arbitrary web script or HTML. |
| Alerts: |
|
Comments (none posted)
wordpress: another pile of vulnerabilities
| Package(s): | wordpress |
CVE #(s): | CVE-2007-1622
CVE-2007-1893
CVE-2007-1894
CVE-2007-1897
|
| Created: | May 2, 2007 |
Updated: | July 6, 2007 |
| Description: |
Wordpress suffers from another set of vulnerabilities including a couple of cross-site scripting problems, an access restrictions bypass issue, and an SQL injection vulnerability. |
| Alerts: |
|
Comments (none posted)
XFree86 X.org: integer overflows
| Package(s): | xfree86 x.org |
CVE #(s): | CVE-2007-1003
CVE-2007-1667
CVE-2007-1351
CVE-2007-1352
|
| Created: | April 3, 2007 |
Updated: | August 11, 2009 |
| Description: |
iDefense reported an integer overflow flaw in the XFree86 XC-MISC
extension. A malicious authorized client could exploit this issue to cause
a denial of service (crash) or potentially execute arbitrary code with root
privileges on the XFree86 server. (CVE-2007-1003)
iDefense reported two integer overflows in the way X.org handled various
font files. A malicious local user could exploit these issues to
potentially execute arbitrary code with the privileges of the X.org server.
(CVE-2007-1351, CVE-2007-1352)
An integer overflow flaw was found in the XFree86 XGetPixel() function.
Improper use of this function could cause an application calling it to
function improperly, possibly leading to a crash or arbitrary code
execution. (CVE-2007-1667) |
| Alerts: |
|
Comments (none posted)
xfsdump: insecure temp dir
| Package(s): | xfsdump |
CVE #(s): | CVE-2007-2654
|
| Created: | June 22, 2007 |
Updated: | September 21, 2007 |
| Description: |
xfs_fsr in xfsdump creates a .fsr temporary directory with insecure
permissions, which allows local users to read or overwrite arbitrary files
on xfs filesystems. |
| Alerts: |
|
Comments (none posted)
xine: format string vulnerabilities
| Package(s): | xine |
CVE #(s): | CVE-2007-0017
|
| Created: | January 23, 2007 |
Updated: | August 10, 2007 |
| Description: |
Multiple format string vulnerabilities in (1) the cdio_log_handler function
in modules/access/cdda/access.c in the CDDA (libcdda_plugin) plugin, and
the (2) cdio_log_handler and (3) vcd_log_handler functions in
modules/access/vcdx/access.c in the VCDX (libvcdx_plugin) plugin, in
VideoLAN VLC 0.7.0 through 0.8.6 allow user-assisted remote attackers to
execute arbitrary code via format string specifiers in an invalid URI, as
demonstrated by a udp://-- URI in an M3U file. |
| Alerts: |
|
Comments (none posted)
xine-lib: arbitrary code execution
| Package(s): | xine-lib |
CVE #(s): | CVE-2007-1387
|
| Created: | March 13, 2007 |
Updated: | April 1, 2008 |
| Description: |
Moritz Jodeit discovered that the DirectShow loader of Xine did not
correctly validate the size of an allocated buffer. By tricking a user
into opening a specially crafted media file, an attacker could execute
arbitrary code with the user's privileges. |
| Alerts: |
|
Comments (none posted)
xine-lib: buffer overflow
| Package(s): | xine-lib |
CVE #(s): | CVE-2006-1664
|
| Created: | April 27, 2006 |
Updated: | February 27, 2008 |
| Description: |
xine-lib does an improper input data boundary check on
MPEG streams. A specially crafted MPEG file can be
created that can cause arbitrary code execution when the
file is accessed. |
| Alerts: |
|
Comments (none posted)
xinit: race condition
| Package(s): | xinit |
CVE #(s): | CVE-2006-5214
|
| Created: | October 17, 2006 |
Updated: | August 9, 2007 |
| Description: |
A race condition allows local users to see error messages generated during
another user's X session. This could allow potentially sensitive
information to be leaked. |
| Alerts: |
|
Comments (1 posted)
xmms: BMP handling vulnerability
| Package(s): | xmms |
CVE #(s): | CVE-2007-0653
CVE-2007-0654
|
| Created: | March 28, 2007 |
Updated: | July 26, 2011 |
| Description: |
xmms suffers from vulnerabilities in its handling of BMP images. Should a hostile image be included in an xmms skin, it could lead to code execution on the user's system. |
| Alerts: |
|
Comments (none posted)
zziplib: buffer overflow
| Package(s): | zziplib |
CVE #(s): | CVE-2007-1614
|
| Created: | April 4, 2007 |
Updated: | September 5, 2007 |
| Description: |
dmcox discovered a boundary error in the zzip_open_shared_io() function
from zzip/file.c . A remote attacker could entice a user to run a zziplib
function with an overly long string as an argument which would trigger the
buffer overflow and may lead to the execution of arbitrary code. |
| Alerts: |
|
Comments (none posted)
Page editor: Jonathan Corbet
Kernel development
Brief items
The current 2.6 prepatch is 2.6.22-rc7,
released by Linus on
July 1. "
It's hopefully (almost certainly) the last -rc before
the final 2.6.22 release, and we should be in pretty good shape. The flow
of patches has really slowed down and the regression list has shrunk a
lot." This is the last chance to test 2.6.22 and find bugs before
they slip into the final release.
As of this writing, about 60 patches have been merged into the mainline git
repository after -rc7. They are mostly fixes, but there is also the
removal of a large set of private ioctl() functions from the
libertas (OLPC) wireless driver.
The current -mm tree is 2.6.22-rc6-mm1. Anybody wanting
to build and test this tree should certainly read Andrew's notes at the top
of the announcement. Recent changes to -mm include kgdb support for
several architectures, tickless support for the x86_64 architecture, the
ability to force-enable the HPET timer even when the BIOS leaves it
disabled, an updated file POSIX capabilities patch, and Intel IOMMU
support.
Comments (none posted)
Kernel development news
SELinux orders a beer object
AppArmor order a /beer
Hilary says "You are both under 21 you can't"
SELinux orders a shandy object
AppArmor orders a /shandy
SELinux is refused because the shandy mixer opened a beer object and
shandy inherited beer typing
AppArmor gets drunk because /shandy and /beer are clearly
different
--
Alan Cox
Comments (6 posted)
Len Brown can only be a glutton for punishment; he is, after all, the
maintainer of the Linux ACPI subsystem. That is a difficult position to be in:
ACPI involves getting into the BIOS layer, an area of system software which
is not always known for careful, high-quality work. Supporting ACPI is a
complex task which, among other things, requires the embedding of a
specialized interpreter within the kernel, a hard sell at best. Even with
![[Len Brown]](/images/conf/ols2007/LenBrown-sm.jpg)
that background in mind, one must wonder just how much masochism is
required to lead one to deliver three separate talks at the 2007 Ottawa
Linux Symposium. That is just what Len did, however; the end result was a
good view into several aspects of the power management problem.
Getting more from tickless
The first talk (on the tickless kernel) was supposed to be given by Suresh
Siddha, who was unable to attend the event. The dynamic tick patches have been
covered here before. Suresh/Len's talk was not really about how these
patches work, but, instead, about the work which remains to be done to take
full advantage of the tickless design. It seems that the work which has
been done so far is just the beginning.
The problem is that, on a system used by Suresh and company, the average
processor sleep time was still less than 1ms even after the dynamic tick
code was enabled. Given that one of the driving reasons for dynamic tick
was to let the processor sleep for long periods of time - thus saving power
- this is a disappointing result. It turns out that there is a lot which
can be done to improve the situation, though.
Step number one is to address a kernel-space problem: there are a lot of
active kernel timers which tend to spread out over time. As a result,
the kernel wakes up much more often than it would if the timers were
sufficiently well
coordinated to expire at the same time whenever possible. As it
happens, many kernel timers do not need great precision; a timer which
fires some number of milliseconds later than scheduled is not a problem.
So, if the kernel could defer some timers to fire at the same time as
others, it can reduce the number of wakeups. The deferrable timers patch does
exactly that; the round_jiffies() function added in 2.6.19 can
also help the kernel line up events. Adding this code brought the average
sleep time up to 20ms, with the system handling 90 interrupts per second.
Next is the problem of hardware timers. On the i386 architecture, the
preferred timer is the local APIC (LAPIC) timer, which is built into the
processor and very fast to program. Unfortunately, putting the processor
into a deep sleep also puts the LAPIC timer to sleep, a situation Len
compared to unplugging one's alarm clock before going to bed. In either
case, oversleeping can be the unwanted result. The programmable interval
timer (PIT) remains awake and is easily used, but it has a maximum event
time of 27ms. If one wants the processor to sleep for longer than that,
another solution must be found. That solution is the high-precision event
timer (HPET), which has a maximum interval of at least three seconds.
Getting access to the HPET can be hard, though; good BIOS support is spotty
at best and the HPET is often disabled. If it can be forced on, however,
the system can go to an average sleep period of about 56ms, handling 32
interrupts per second.
Even better is to get the HPET out of the "legacy mode" currently used by
Linux. This mode is simple to use, but it requires the rebroadcasting of
timer interrupts on multiprocessor systems. But the HPET can work with
per-CPU channels, eliminating this problem. The result: average sleep time
grows to 74ms.
At this point, the problem moves to user space. Since the release of powertop, there has been a lot of
progress in this area; user-space applications which cause frequent wakeups
unnecessarily stand out immediately and can be fixed. But, as Len noted,
"user space still sucks."
ACPI myths
One gets the sense that Len is a little tired of people complaining
about ACPI in Linux. His response was a talk on "ten ACPI myths" - though
the list had grown to twelve by then.
#1: There is no benefit to enabling ACPI. Len's answer to this had
two parts, the first of which being that, increasingly, there is no
alternative. The older APM interface is deprecated, and, in particular,
Microsoft's Vista has removed APM support altogether. So, soon, there will
be no hardware support for APM at all; it is a dead standard. The MPS
standard (used for discovering processors) is also old and dying. Like it
or not, ACPI is needed to be able to make use of one's hardware.
On the positive side, using ACPI gives better access to hardware features
like software-enabled power, sleep, and lid buttons. Smart battery status
information becomes available, as well as the potential for reduced power
consumption and better battery life. True hotplug and (especially) docking
support also become possible with ACPI.
#2: Suspend-to-disk problems are ACPI's fault. In fact, ACPI is a
very small part of the suspend-to-disk process - everything else is in
other parts of the kernel code. If you have suspend-to-disk problems,
suggests Len, "complain to Pavel [Machek], not me."
#3: If the extra buttons don't work, it's ACPI's fault. The issue
here is that support for "hotkeys" is not actually a part of the ACPI
specification. All of those extra buttons found on laptops are
vendor-specific added features. The reverse-engineered drivers currently
found in the kernel are a "heroic effort," but they should not be
necessary. Vendors should be supplying drivers for their hardware.
#4: Boot problems with ACPI enabled are ACPI's fault. Len allows
that this one might just be true some of the time. But disabling ACPI at
boot-time also disables other hardware features - the IO-APIC in
particular. So any problems associated with those other parts of the
system will be masked by turning off ACPI. It looks like ACPI was the
actual problem, but the truth is more complicated.
#5: ACPI issues are due to sub-standard platform BIOS. It turns out
that there are three general sources of ACPI incompatibilities. Just one
of them is the BIOS violating the ACPI specification; incompatibilities
which don't break Windows will often slip through the testing process. The
firmware developer kit
produced by Intel can help in this regard. Another source of problems is
differing interpretations of the specification, which is a long and complex
document. The Linux ACPI developers have been working to help clarify the
specification when this sort of problem arises. Finally, there can also
simply be bugs in the Linux-specific code.
#6: The Linux community cannot help to improve the ACPI
specification. In fact, the ACPI team has been submitting
improvements, mostly in the form of "specification clarifications." Many
of those have been incorporated and shipped with specification updates.
#7: The ACPI code changes a lot but is not getting better. Intel
has put together a test suite with over 2000 tests; ACPI changes must now
pass that suite before being merged. The number of new bug reports has
been dropping - though, perhaps, more slowly than one might like.
#8: ACPI is slow and bad for high-performance CPU governors. The
ACPI interpreter is not used in performance-critical paths, and, thus,
cannot be slowing things down. ACPI's role is in the setup and
configuration process.
#9: The speedstep-centrino governor is faster than acpi-cpufreq.
The acpi-cpufreq governor has seen considerable improvements, and is now able
to access MSRs in a fast and (more importantly) supportable way. So its
performance is where it should be, and the speedstep-centrino governor is
scheduled for removal.
#10: More CPU idle power states is better. This may be true for any
given processor, but you cannot compare processors on the basis of how many
idle states they provide. All that really matters is how much power you
save when you use those states.
#11: Processor throttling will save energy. The problem here is a
confusion of "power" and "energy." A throttled processor may draw less
power, but it has to run longer to accomplish the same work. So throttling
the processor (while maintaining the same voltage) may have the effect of
increasing energy use rather than reducing it. The better approach is
almost always to run at the fastest clock frequency afforded by the current
voltage level and get the work done quickly; Len characterized this as the
"race to idle."
There are second-order effects to consider; in particular, batteries will
last longer if they are discharged over longer periods of time. A
throttled processor may also run cooler, allowing fans to be turned off.
Throttling may be necessary for temperature regulation. But, from an
energy-savings perspective, these are truly second-order effects.
#12: I can't contribute to improving ACPI in Linux. Like any other
project, Linux ACPI would love to have more developers. And, failing that,
one can always test kernels and report bugs. There is, in reality, plenty
of opportunity for improving the ACPI code.
Cool-hand Linux
Len's final talk moved away from power consumption toward its effects - the
generation of heat, in particular. The creation of excess heat is not a
welcome behavior in any device, but it becomes especially undesirable in
handheld devices. Devices which make the user's hand sweat are less fun to
use; those which get too hot to hold comfortably can be entirely unusable.
So temperature management is important. But the nature of these devices
can make thermal regulation tricky: there's no room for fans in a
Linux-powered cellular phone, and the dissipation of heat can be hard
in general.
The ACPI 3.0 specification includes a complicated thermal model. The
device is divided up into zones, and each component has its thermal
contribution to each zone characterized. Implementing this specification
is a complex and difficult task - enough so that the Linux ACPI developers
have no intention of doing it. They will, instead, focus on something
simpler.
That something is the ACPI 2.0 thermal model. It includes thermal zones,
each of which comes with temperature sensors and a set of trip points.
The "critical shutdown" trip point is set somewhere just short of where the
device begins to melt; should things get that warm, the device just needs
to turn itself off as quickly as possible. Various other trip points
will be encountered first; they should bring about increasingly strong
measures for controlling temperature. These can include turning on fans
(if they exist), throttling devices, or suspending the system to disk.
ACPI 2.0 includes an embedded controller which monitors the system's
temperature sensors and sends events to the CPU when something interesting
happens.
The in-progress thermal regulation code just uses the existing critical
shutdown mechanism built into ACPI. There is also support for some of the
passive trip points which bring about CPU throttling. For the
non-processor thermal zones, though, the best thing to do is to let user
space figure out how to respond, so that's what the ACPI code will do.
There will be a netlink interface through which temperature events can be
sent, and a set of sysfs directories for reading sensor values. The sysfs
tree will also include control files which can be used by a user-space
daemon to throttle specific devices in response to temperature events.
In the end, the kernel is really just a conduit, conducting events and
control settings between the components of the device and user space.
There were some questions on whether there will be a standardized set of
sysfs knobs for every device; the answer appears to be "no." Each device
is different, with its own control parameters; it is hard to create any
sort of standard which can describe them all. Beyond that, the target
environment is embedded devices, each of which is unique. It is expected
that each device will have its own special-purpose management daemon
designed especially for it, so there is no real benefit in trying to make
things generic.
The impression one gets from all these talks is that quite a bit is
happening in the power management area - a part of Linux which, for some
time, has been seen as falling short of what it really needs to be. The
increasing use of Linux in embedded systems can only help in this regard;
there are a number of vendors who have a strong interest in improved
support for intelligent use of power. Given time and continued work, power
management may soon be one of those past problems which is no longer an
issue.
Comments (9 posted)
Ingo Molnar's
completely fair
scheduler (CFS) patch continues to develop; the current version, as of
this writing, is
v18. One
aspect of CFS behavior is seen as a serious shortcoming by many potential
users, however: it only implements fairness between individual processes.
If 50 processes are trying to run at any given time, CFS will carefully
ensure that each gets 2% of the CPU. It could be, however, that one of
those processes is the X server belonging to Alice, while the other 49 are
part of a massive kernel build launched by Karl the opportunistic kernel
hacker, who logged
in over the net to take advantage of some free CPU time. Assuming that
allowing Karl on the system is considered fair at all, it is reasonable to
say that his 49 compiler processes should, as a group, share the processor
with Alice's X server. In other words, X should get 50% of the CPU (if it
needs it) while all of Karl's processes share the other 50%.
This type of scheduling is called "group scheduling"; Linux has never
really supported it with any scheduler. It would be nice if a "completely
fair scheduler" to be merged in the future had the potential to be
completely fair in this regard too. Thanks to work by Srivatsa Vaddagiri
and others, things may well happen in just that way.
The first part of Srivatsa's work was merged into v17 of the CFS patch. It
creates the concept of a "scheduling entity" - something to be scheduled,
which might not be a process. This work takes the per-process scheduling
information and packages it up within a sched_entity structure.
In this form, it is essentially a cleanup - it encapsulates the relevant
information (a useful thing to do in its own right) without actually
changing how the CFS scheduler works.
Group scheduling is implemented in a separate set of patches which
are not yet part of the CFS code. These patches turn a scheduling entity into
a hierarchical structure. There can now be scheduling entities which are
not directly associated with processes; instead, they represent a specific
group of processes. Each scheduling entity of this type has its own run
queue within it. All scheduling entities also now have a parent
pointer and a pointer to the run queue into which they should be scheduled.
By default, processes are at the top of the hierarchy, and each is
scheduled independently. A process can be moved underneath another
scheduling entity, though, essentially removing it from the primary run
queue. When that process becomes runnable, it is put on the run queue
associated with its parent scheduling entity.
When the scheduler goes to pick the next task to run, it looks at all of
the top-level scheduling entities and takes the one which is considered
most deserving of the CPU. If that entity is not a process (it's a
higher-level scheduling entity), then the scheduler looks at the run queue
contained within that entity and starts over again. Things continue down
the hierarchy until an actual process is found, at which point it is run.
As the process runs, its runtime statistics are collected as usual, but
they are also propagated up the hierarchy so that its CPU usage is properly
reflected at each level.
So now the system administrator can create one scheduling entity for Alice,
and another for Karl. All of Alice's processes are placed under her
representative scheduling entity; a similar thing happens to all of the
processes in Karl's big kernel build. The CFS scheduler will enforce
fairness between Alice and Karl; once it decides who deserves the CPU, it
will drop down a level and perform fair scheduling of that user's
processes.
The creation of the process hierarchy need not be done on a per-user basis;
processes can be organized in any way that the administrator sees fit. The
grouping could be coarser; for example, on a university machine, all
students could be placed in one group and faculty in another. Or the
hierarchy could be based on the type of process: there could be scheduling
entities representing system daemons, interactive tools, monster cranker
CPU hogs, etc. There is nothing in the patch which limits the ways in
which processes can be grouped.
One remaining question might be: how does the system administrator actually
cause this grouping to happen? The answer is in the second part of the
group scheduling patch, which integrates scheduling entities with the process container mechanism.
The administrator mounts a container filesystem with the cpuctl
option; scheduling groups can then be created as directories within that
filesystem. Processes can be moved into (and out of) groups using the
usual container interface. So any particular policy can be implemented
through the creation of a simple, user-space daemon which responds to
process creation events by placing newly-created processes in the right
group.
In its current form, the container code only supports a single level of group
hierarchy, so a two-level scheme (divide users into administrators,
employees, and guests, then enforce fairness between users in each group,
for example) cannot be implemented. This appears to be a "didn't get
around to it yet" sort of limitation, though, rather than something which
is inherent in the code.
With this feature in place, CFS will become more interesting to a number of
potential users. Those users may have to wait a little longer, though.
The 2.6.23 merge window will be opening soon, but it seems unlikely that
this work will be considered ready for inclusion at that time. Maybe
2.6.24 will be a good release for people wanting a shiny, new, group-aware
scheduler.
Comments (5 posted)
The proposed
fallocate() system call, which exists to allow an
application to preallocate blocks for a file, was
covered here back in March.
Since then there has been quite a bit of discussion, but there is still no
fallocate() system call in the mainline - and it's not clear that
there will be in 2.6.23 either. There is
a new version of the
fallocate() patch in circulation, so it seems like a good time
to catch up with what is going on.
Back in March, the proposed interface was:
long fallocate(int fd, int mode, loff_t offset, loff_t len);
It turns out that this specific arrangement of parameters is hard to
support on some architectures - the S/390 architecture in particular.
Various alternatives were proposed, but getting something that everybody
liked proved difficult. In the end, the above prototype is still being
used. The S/390 architecture code will have to do some extra bit shuffling
to be able to implement this call, but that apparently is the best way to
go.
That does not mean that the interface discussions are done, though. The
current version of the patch now has four possibilities for mode:
- FA_ALLOCATE will allocate the requested space at the
given offset. If this call makes the file longer, the
reported size of the file will be increased accordingly, making the
allocated blocks part of the file immediately.
- FA_RESV_SPACE preallocates blocks, but does not change the
size of the file. So the newly allocated blocks, if past the end of
the file, will not appear to be present until the application writes
to them (or increases the size of the file in some other way).
- FA_DEALLOCATE returns previously-allocated blocks to the
system. The size of the file will be changed if the deallocated
blocks are at the end.
- FA_UNRESV_SPACE returns the blocks to the system, but does
not change the size of the file.
As an example of how the last two operations differ, consider what happens
if an application uses fallocate() to remove the last block from a
file. If that block was removed with FA_DEALLOCATE, a subsequent
attempt to read that block will return no data - the offset where that
block was is now past the end of the file. If, instead, the block is
removed with FA_UNRESV_SPACE, an attempt to read it will return a
block full of zeros.
It turns out that there are some differing opinions on how this interface
should work. A trivial change which has been requested is that the
FA_ prefix be changed to FALLOC_ - this change is likely
to be made. But it seems there's a number of other flags that people would
like to see:
- FALLOC_ZERO_SPACE would write zeros to the requested
range - even if that range is already allocated to the file. This
feature would be useful because some filesystems can quickly
mark the affected range as being uninitialized rather than actually
writing zeros to all of those blocks.
- FALLOC_MKSWAP would allocate the space, mark it initialized,
but not actually zero out the blocks. The newly-allocated blocks
would thus still contain whatever data the previous user left there.
This operation, which would clearly have to be privileged, is intended
to make it possible to create a swap file in a very quick way. It
would require very little in the way of in-kernel memory allocations
to implement, making it a useful way to add an emergency swap file to
a system which has gone into an out-of-memory condition.
- FALLOC_FL_ERR_FREE would be an additional flag which would
affect error handling; in particular, it would control behavior when
the filesystem runs out of space part way through an allocation
request. If this flag is set, the blocks which were successfully
preallocated would be freed; otherwise they would be left in place.
There is some opposition to this flag; it may be left out in favor of
an official "all or nothing" policy for preallocations.
- FALLOC_FL_NO_MTIME and FALLOC_FL_NO_CTIME would
prevent the filesystem from updating the modification
times associated with the file.
All told, it's a significant number of new features - enough that some
people are starting to wonder if fallocate() is the right approach
after all. Christoph Hellwig, in particular, has started to complain; he
suggests adding something small which would be able to implement
posix_fallocate() and no more. Block deletion, he says, is a
different function and should be done with a different system call, and the
other features need more thought (and aggressive weeding). So it's unclear
where this patch set will go and whether it will be considered ready for
2.6.23.
Comments (2 posted)
Patches and updates
Kernel trees
Core kernel code
Development tools
Device drivers
Documentation
Filesystems and block I/O
Memory management
Networking
Architecture-specific
Virtualization and containers
Miscellaneous
Page editor: Jonathan Corbet
Distributions
News and Editorials
July 2, 2007
This article was contributed by Donnie Berkholz
Package management is one of the key defining characteristics of a
distribution. The question of where package management is going should be of
interest to anyone involved with a distribution or administering a
Unix-based box of any sort. In many distributions, package management
appears to have reached a near standstill. For example, the RPM format has
hardly changed in years. In Gentoo, however, ongoing development of package
management is so popular that three separate, actively developed package
managers exist.
Over the past couple of years, many developers have grown increasingly
unsatisfied with Gentoo's default package manager, Portage. Portage is a
high-level interface to Gentoo's package format, a series of scripts called
ebuilds. Unfortunately, Portage wasn't planned out in the first place, and
features have been added ad hoc over the course of many years. Today, it's
extremely difficult to add features to Portage or interface with it because
there are complex interdependencies and a pretty much nonexistent
API. Consequently, two groups of developers decided to start fresh with two
separate projects: paludis and pkgcore.
Paludis is implemented in C++ and bash, with a C++ API and an optional
Ruby scripting API. One of the
biggest features that Portage lacks but Paludis supports is the ability to
remove all unused dependencies of a package when removing that
package. Also, it has a much more flexible configuration system,
user-definable hooks into the build process, user-defined sets of packages,
and clean support for multiple repositories. In Portage, secondary
repositories (called "overlays") are second-class citizens. Furthermore, Paludis
added a number of features Gentoo developers have been requesting for years
that add flexibility to how dependencies can be specified. Paludis contains
a number of modules, including:
- paludis—package installation, removal, and queries
- contrarius—a client for building cross-compiling toolchains
- inquisitio—a package searching client
- qualudis—a quality assurance tool for ebuilds
- adjutrix—a tool for architecture teams
Paludis includes experimental Portage support as of the end of March. This
means you can try it out without wasting time migrating config files over,
which significantly lowers its barrier to adoption.
Pkgcore is implemented in Python, the same language as Portage, with a few
time-critical modules in C. It was designed so that there's no reason it has
to be Gentoo-specific—it could easily support other package
formats. Its philosophy is to maintain complete backwards compatibility with
Portage while recoding it in a clean, maintainable, extensible fashion. Some
of the code written for Pkgcore has been pulled back into Portage, such as
the cache-handling code. Its 0.3 release finally reached a point of
usability because it added frontends with comprehensible output—one
that mirrors Portage and another that mirrors Paludis. Despite being in
Python, it runs shockingly fast—it is a good example that not all
programs written in high-level languages need be slow. The Pkgcore API is also viewable online. Some
of the utilities Pkgcore includes are:
- pmerge—package merging and unmerging
- pmaint—repository maintenance: syncing, etc.
- pquery—package searching
- pcheck—QA checker for ebuilds
A couple of interesting features Pkgcore has are N-parent inheritance of
eclasses (a Portage feature that allows inheritance to be used in bash code)
and an ebuild daemon. The daemon has a number of benefits including
near-linear scaling to multiple processors for some tasks—Pkgcore's
home page cites ~90% scaling on a quad Pentium 3. And of course, one benefit
over Paludis is that you don't need to use the occasionally less-than-speedy
g++ to compile it.
Pkgcore and Paludis seem fairly well-matched in the features
department. They both support sets, the additional dependency flexibility,
integrated checking for security vulnerabilities, and Portage's on-disk
format. Another useful feature they both support is the ability to restrict
packages to install based on their licenses. This gives users the choice of
how free they want their installations to be, from FSF-compliant to packed
with proprietary. Both projects have active teams working on them of between
5 and 10 developers each. In comparison, Portage is primarily maintained by
potential masochist Zac Medico—a glance through the ChangeLog showed
that he was the only committer since January.
The advent of multiple package managers accelerated Gentoo's need to adopt a
formal Package Manager Specification. In the past, new features or breaks in
backwards compatibility in Portage simply forced a wait of roughly 6 months,
at which point it was assumed that nobody was using those old Portage
versions anymore. Problems with that should be readily apparent. When new
package managers came along, additional questions came up of which aspects
of ebuild behavior were intrinsic behavior and which were Portage-specific
details. With only one implementation and no spec, it's hard to draw a line.
Together, these two developments motivated creation of an Ebuild API or
EAPI. The current generation will be EAPI=0, which is being documented in a
formal specification. Once this spec is done, Gentoo will have a process in
place for dealing with ebuilds using new features and for dealing with
breaks in compatibility via setting in each ebuild the EAPI that ebuild
supports. This will enable near-instant use of new features that Gentoo
developers have already been awaiting for years as well as agreement upon
how all these package managers must act in common and where they have
flexibility to be different.
Comments (13 posted)
New Releases
Slackware 12.0 has
been released.
"
Well folks, it's that time to announce a new stable Slackware
release again. So, without further ado, announcing Slackware version 12.0!
Since we've moved to supporting the 2.6 kernel series exclusively (and
fine-tuned the system to get the most out of it), we feel that Slackware
12.0 has many improvements over our last release (Slackware 11.0) and is a
must-have upgrade for any Slackware user."
Comments (15 posted)
The Ubuntu project has announced the release of Gutsy Gibbon Tribe 2,
which is a pre-release of Ubuntu 7.10.
"
Tribe 2 is the second in a series of milestone CD images that will be
released throughout the Gutsy development cycle. The Tribe images are known
to be reasonably free of show-stopper CD build or installer bugs, while
representing a very recent snapshot of Gutsy."
Full Story (comments: none)
Distribution News
Voting is open for the Fedora Board elections in which 3 of the 9 seats
will be chosen. The candidates are Christopher Aillon, Dennis Gilmore, Bob
Jensen, Brian Pepple, Jef Spaleta and Rahul Sundaram. Voting will end at
Jul 8 23:59:59 UTC and anyone who has signed the Fedora CLA (ie: is in
cla_done in the Fedora Account System) is eligible to vote.
Full Story (comments: none)
Fedora Core 5 has gone into retirement. No further updates will be issued
for FC5 or FE5. Fedora developers will now focus their attention on the
development of F8 and maintenance of Fedora 7.
Full Story (comments: none)
Nominations are open for the Gentoo Council and will remain throughout
July. Voting will be open during August. Only Gentoo developers may be
nominated or vote.
Full Story (comments: none)
The xmms package in Debian may be removed from the archive, along with many
plugins. Click below for the rationale and complete list of packages
involved.
Full Story (comments: none)
Debian's unstable branch is undergoing a transition to GCC 4.2. "
GCC
4.2 was released on May 13 and has been in unstable since roughly that
time. The default version of gfortran was recently switched to 4.2 and the
Debian GCC maintainers would like to move to 4.2 as the default compiler in
unstable for all architectures and for all languages with the exception of
Java (which will follow later). This message describes the plan to make
this transition possible."
Full Story (comments: none)
New Distributions
Fluxbuntu is a LPAE-standard compliant,
Ubuntu-based distribution. It is lightweight, swift and efficient. These
features support the Fluxbuntu Linux Project's Goal of running on a wide
range of mobile devices and computers (low-end & high-end). According
to the
Release
Schedule the first test release is expected to coincide with the Gutsy
Tribe 3 release on July 19. ["LPAE" appears to stand for "lightweight,
productive, agile, and efficient" - we had to look it up too.]
Comments (none posted)
Distribution Newsletters
The Debian Weekly News for July 3, 2007 covers CD and DVD covers for Debian
4.0, Alioth has been upgraded to etch, Kurt Gramlich announced a Skolelinux
Youngster Meeting on July 20th to 26th in Chemnitz, Germany, Call for
Papers for LVEE-2007, interviews with Sam Hocevar, a collection of Debian
Art, removing PHP4, Release Team Meeting Results, and much more.
Full Story (comments: none)
Issue 94 of the Fedora Weekly News is out with the latest information on
the Fedora distribution.
Full Story (comments: none)
The second issue of
Full Circle Magazine, the independent magazine for the Ubuntu community,
is online. Topics include:
Flavour of the Month - Kubuntu,
How-To - Ubuntu on the Intel Mac Mini, Virtual Private Networking,
Learning Scribus Part 2 and Ubuntu for your Grandma!, Review - System 76
Darter, Top 5 - Widgets and MyDesktop, MyPC and more!
Comments (none posted)
The
DistroWatch
Weekly for July 2, 2007 is out. "
The release of the General
Public Licence version 3 and the new Linux edition of Google Desktop were
the primary generators of headlines on most Linux news sites during the
past week. In contrast, all was quiet on the distribution development
front, with only Dreamlinux, Scientific Linux and a few minor projects
announcing new stable releases. But don't despair; this week's DistroWatch
Weekly is still packed with interesting topics, including an interview with
Clement Lefebvre from Linux Mint, a rebuttal by John Murga from the Puppy
Linux forums, and information about some other interesting news of the
week, such as the new PC-BSD LiveCD and the latest version of the GNU/Linux
distro timeline. And if you are looking for something to test and play with
during the slow months of July and August, don't miss the new distributions
section which presents no fewer than 6 (six!) new distro projects that were
submitted to DistroWatch last week."
Comments (none posted)
Distribution meetings
Ian Jackson has written a DebConf 7 trip report. "
Mako gave a
fantastic feelgood talk about how Debian is really interesting to all sorts
of people from outside the direct field of computing, like sociologists,
lawyers, voting reform advocates, etc. It made us all proud to be part of
Debian, and of course gave us an insight into how what we do affects the
world at large."
Full Story (comments: none)
Newsletters and articles of interest
DesktopLinux
takes a quick
look at the release of Scientific Linux 4.5. "
The Scientific
Linux project last week announced the release of Scientific Linux 4.5, an
install-only distribution rebuilt from source code for Red Hat Enterprise
Linux 4. It features a 2.6.18 kernel, GNOME default desktop, multilingual
support, and Xen paravirtual guest capabilities."
Comments (none posted)
Distribution reviews
Linux.com
reviews Yoper
3.0. "
Yoper claims to be a high-performance Linux distribution
optimized for newer processors. It incorporates components from other
distros, but its packages have been built from scratch to provide enhanced
performance. I tested a beta of Yoper 3.0 on my desktop a year ago and was
so impressed that when 3.0 was released this month, I installed it on my
new Hewlett-Packard Pavilion dv6105 notebook. Using it, however, left me
disappointed."
Comments (none posted)
TuxMachines
reviews
TinyMe, a scaled down version of PCLinuxOS 2007. "
TinyME might make
a good start for a server as all the important LAMP packages are in the
PCLOS repositories as well. One doesn't need all the extra goodies that
come with the big desktops these days for a server and LXDE would be good
for those that like graphical server tools such as webmin. I didn't have
an older computer handy on which to test it, but I imagine it would be
great for it. PCLOS developers build support for about everything into
their kernels and LXDE only requires a Pentium II and 128 MB ram if one
wishes to use like Firefox or OpenOffice.org. It is said that LXDE alone
can run in as little as 64 MB ram."
Comments (none posted)
Page editor: Rebecca Sobol
Development
Tim Bray has announced the launch of
mod_atom, an Apache web server extension
module that supports the
Atom Publishing Protocol (APP),
according to Kurt Cagle on O'Reilly's XML.com.
Atom is defined by the IETF draft standard
RFC 4287.
The Wikipedia definition of
Atom states:
The name Atom applies to a pair of related standards. The Atom Syndication Format is an XML language used for web feeds, while the Atom Publishing Protocol (APP for short) is a simple HTTP-based protocol for creating and updating Web resources.
Tim Bray explains his reasons for creating mod_atom:
This is a stripped-down implementation of the server side of the Atom Publishing Protocol as an Apache module, implemented in C. It felt like something that needed to exist and I am better-qualified for this particular chore than your average geek; having said that, I have no idea if anyone actually needs such a thing.
Features and goals of the mod_atom project include:
- Implementation of the entire Atom Protocol.
- Data is stored in files instead of a database, for speed.
- Has the ability to preserve foreign markup information.
- Can work under Apache
Multi-Processing Modules.
- Uses a Uniform Resource Name scheme for publication portability.
- Uses the AtomPub directive in the Apache configuration to define publications.
- Licensed under the Apache V2 license.
The mod_atom project is currently in a state of development:
Technical Status · Its not really ready to use, but Im publishing it because I want to start talking and get some advice and opinions on what I should do about some things, and thats easier if you can point at source code.
The author is requesting comments and contributions, a project
TODO list has been published for those who are interested in
lending a hand.
Comments (4 posted)
System Applications
Clusters and Grids
Version 0.4 of Allmydata-Tahoe is out with several new capabilities.
"
We are pleased to announce the release of version 0.4
of Allmydata-Tahoe, a secure, decentralized storage grid under a
free-software licence. This is the follow-up to v0.3 which was
released June 6, 2007".
Full Story (comments: 1)
Database Software
The July 1, 2007 edition of the PostgreSQL Weekly News
is online with the latest PostgreSQL DBMS articles and resources.
Full Story (comments: none)
Filesystem Utilities
Stable version 1.5 of ddrescue
has been announced.
"
GNU ddrescue copies data from one file or block device (hard disc, cdrom, etc) to another, trying hard to rescue data in case of read errors. The basic operation of ddrescue is fully automatic. That is, you don't have to wait for an error, stop the program, read the log, run it in reverse mode, etc."
Comments (2 posted)
Mail Software
A. M. Kuchling
discusses the use of mailbox.py for processing email in an O'Reilly
article.
"
Archived mail can be stored using many different file formats. The mailbox module in the Python standard library supports reading and modifying five different formats, all formats that are primarily used on Unix systems.
The mailbox module was greatly enhanced in Python 2.5. For a long time the mailbox module only supported reading mailboxes, not modifying them. Gregory K. Johnson, as his project for Google's 2005 Summer of Code, wrote code for adding and deleting messages; these new features went into Python 2.5, released in September 2006."
Comments (none posted)
Networking Tools
Version 0.9.4 of conntrack-tools, a daemon and command line interface
for the netfilter project, is out with new capabilities, code cleanup
and bug fixes.
Full Story (comments: none)
Stable version 4.0 of jwhois
has been announced.
"
This is jwhois, an improved Whois client capable of selecting Whois server to query based on a flexible configuration file using either regular expressions or CIDR blocks."
Comments (none posted)
Web Site Development
The July 1, 2007 edition of the
Django status update covers the latest developments to the Django
web development platform.
Comments (none posted)
Desktop Applications
Audio Applications
Version 2.0.3 of
Ardour,
a multi-track audio workstation, has been released. See the
Changes document for a list
of new features and bug fixes.
Comments (none posted)
Version 0.2.23 of QjackCtl, a GUI control panel for the
Jack Audio Connection Kit (JACK) is out.
"
QjackCtl 0.2.23 has been released and
is the one first ever introducing explicit JACK MIDI support (JACK >=
0.107.0)."
Full Story (comments: none)
Calendar Software
MozillaZine
reports
that the Mozilla Calendar Project has released Lightning 0.5 and
Sunbird 0.5.
"
Notable improvements include a polished user interface, automatic data migration from iCal and Evolution, improved printing, better integration of Lightning into Mozilla Thunderbird and support for Google Calendar (via the Provider for Google Calendar extension)".
Comments (none posted)
Desktop Environments
A VentureCake blog
recommends ten ways to improve the GNOME desktop.
"
We love GNOME. Sometime around 2.6 it started becoming really, really damned good, and a lot faster and more responsive. All kinds of nice things like Network Manager, the Nautilus CD burner and the SFTP support popped up. It helps that most major Linux apps like like Firefox, Evolution, GAIM, and OpenOffice use the same toolkit and themes too. Obviously were not alone either: Ubuntu, RHEL and SuSE all use GNOME by default. Heres a bunch of ideas to improve it." (Found on
GnomeDesktop.org).
Comments (none posted)
The following new GNOME software has been announced this week:
You can find more new GNOME software releases at
gnomefiles.org.
Comments (none posted)
The July 1, 2007 edition of the
KDE Commit-Digest has been
announced.
The content summary says:
"
Akademy 2007 kicks off in Glasgow, Scotland. Continued work in Plasma, with improvements in the Photoframe and Dictionary Plasmoids, and the addition of ChemicalData, Akonadi and Battery Plasmoids. Support for Solid-based network status support in Mailody. Support for multiple blogs in KBlogger. Automatic downloading of map tiles in Marble. Theming support added to KBounce..."
Comments (none posted)
The following new KDE software has been announced this week:
You can find more new KDE software releases at
kde-apps.org.
Comments (none posted)
The following new Xorg software has been announced this week:
More information can be found on the
X.Org Foundation wiki.
Comments (none posted)
Desktop Publishing
Release candidate 2 of LyX 1.5.0, a GUI front-end to the TeX typesetter,
is out.
"
We expect this to be the last release before 1.5.0, and until the
first stable release only critical bugs and regressions will be
addressed.
We encourage users to try this release candidate and report
any feedback or problems to lyx-devel at lists.lyx.org.
Compared with the first release candidate we have mostly fixed bugs
and polished the graphical interface."
Full Story (comments: none)
Electronics
Version 1.0.1.20070626, the first stable release of
gEDA/gaf,
has been
announced.
"
The focus of this release was bug fixing. This is also
the first release created using git."
Comments (none posted)
Version 2007-07-02 of
Kicad,
an electronic schematic and printed circuit CAD application, is out
with bug fixes and other enhancements to the
pcbnew and eeschema components.
Comments (none posted)
Financial Applications
Version 2.8.6 of
SQL-Ledger,
a web-based accounting package, is out with various enhancements.
See the
What's New document for details.
Comments (none posted)
Games
Version 0.5.0 beta1 of Ember
has been announced
on the WorldForge virtual world game site.
"
This version is the first to use CEGUI 0.5 and Ogre 1.4. It also includes a new entity editing framework which allows for real time authoring of the world."
Comments (none posted)
Graphics
Release 1.4.10 of cairo, a 2D graphics library, has been announced.
"
This is the fifth update in cairo's stable 1.4 series. It comes
roughly three weeks after the 1.4.8 release. The most significant
change in this release is a fix to avoid an X error in certain cases,
(that were causing OpenOffice.org to crash in Fedora). There is also a
semantic change to include child window contents when using an xlib
surface as a source, an optimization when drawing many rectangles, and
several minor fixes."
Full Story (comments: none)
GUI Packages
KDE.News
covers
the release of the Qyoto C#/Mono bindings for Qt 4.3.
"
After the recent final release of QtJambi, Trolltech's Java bindings, I'm pleased to announce another new member of the Qt bindings family, the Qyoto C#/Mono bindings for Qt 4.3, which are available for download on the Qyoto/Kimono site, where there is also a help forum for your Qyoto programming questions." The article also mentions the release of
QtRuby 1.4.9.
Comments (none posted)
Interoperability
Version 0.9.40 of Wine has been
announced.
Changes include:
many MSHTML improvements, a few more sound fixes,
many Direct3D fixes and lots of bug fixes.
Comments (none posted)
Music Applications
Two new documents, the
Quickstart Guide
and
Primer, have
been published for the Aeolus organ synthesizer application.
Full Story (comments: none)
Office Applications
Stable version 3.6.3 of
GNU gv,
has been announced.
"
GNU gv allows to view and navigate through PostScript and PDF documents on an X display by providing a user interface for the ghostscript interpreter.
gv is a(n) improved derivation of Timothy O. Theisen's Ghostview developed by Johannes Plass. "
Comments (none posted)
Office Suites
The June, 2007 edition of the OpenOffice.org Newsletter
is out with the latest OO.o office suite articles and events.
Full Story (comments: none)
Speech Software
Version 1.27 of the
eSpeak
text to speech converter is out. Changes include a move to GPLv3,
bug fixes, language improvements, a new options parameter and
new breath attributes.
Comments (none posted)
Web Browsers
MozillaZine
notes the release of Mozilla Firefox 1.5.0.12.
"
Users of Mozilla Firefox 1.5.0.12 have been offered a major update to Mozilla Firefox 2.0.0.4 via the automatic update notification. As reported earlier, Mozilla Firefox 1.5.0.12 is the last release from the Firefox 1.5 Branch.
As per the the ReleaseRoadmap policy, the previous release of Firefox (1.5 in this case) is supported for six months beyond the release of a major revision (2.0 in this case)."
Comments (none posted)
MozillaZine
has announced the release of Gran Paradiso Alpha 6.
"
New features in this development milestone of Mozilla Firefox 3 include an upgraded SQLite engine, improved cookie performance, support for site-specific text size preference and various Gecko 1.9 bug fixes.
Some of the changes in Alpha versions of Gecko 1.9 affect the web and platform compatibility of Gran Paradiso Alpha 6."
Comments (none posted)
Miscellaneous
Stable version 2.9 of
GNU Cpio,
a classic Unix application for archiving files, is out with a bug fix.
Comments (none posted)
Version 2.1.1 of WengoPhone, a SIP protocol softphone, is out.
"
This is a bugfix release of the 2.1 series of the WengoPhone,
which fixes a number of important problems, and updates the translations
of 13 languages, bringing the number of fully translated languages to 15."
Full Story (comments: none)
Languages and Tools
Caml
The July 3, 2007 edition of the Caml Weekly News
is out with new Caml language articles.
Full Story (comments: none)
Lisp
Version 1.0.7 of Steel Bank Common Lisp (SBCL) has been announced.
"
This version improves
interrupt safety and bignum printing performance, has some bug fixes,
and more."
Full Story (comments: none)
Python
The July 2, 2007 edition of the Python-URL! is online with
a new collection of Python article links.
Full Story (comments: none)
Tcl/Tk
The June 27, 2007 edition of the Tcl-URL! is online with new
Tcl/Tk articles and resources.
Full Story (comments: none)
The July 3, 2007 edition of the Tcl-URL! is online with new
Tcl/Tk articles and resources.
Full Story (comments: none)
Libraries
Stable version 1.1.5 of
GNU libmatheval
is available.
"
GNU libmatheval is a library that makes it possible to calculate mathematical expressions for given variable values and to calculate expression's derivative with respect to a given variable. The library supports arbitrary variable names in expressions, decimal constants, basic unary and binary operators and elementary mathematical functions."
Comments (none posted)
Page editor: Forrest Cook
Linux in the news
Recommended Reading
Groklaw has posted
a transcription of a talk that FSF attorney Eben
Moglen gave to the Scottish Society for Computers and Law on June 26.
"
The theme is the connection between GPLv3, mathematics, and the sharing of human knowledge. As a jumping off point, he asks us to imagine a world in which arithmetic has become property. Even stating that diminishes it, actually."
Comments (4 posted)
Jeremy Allison
writes about the
impermanence of proprietary data formats. "
I think proprietary
record formats will present a problem for historians. Perhaps not in the
short-term, but certainly in the medium to long term (and remember I'm
talking about hundreds if not thousands of years now). Imagine that some
historian in 500 years time discovers Vice President Cheney's "undisclosed
location" and finds his secret laptop computer. "Finally," the historian
thinks, "we will know who advised this administration about energy policy!"
as he swims back to the surface of the ocean above the Washington
monument. Unfortunately it turns out the data was written in the
"Word-mangler for Windows 2002" format, for which no specifications were
ever published, and which was deliberately designed to be difficult for the
competition to read."
Comments (13 posted)
Trade Shows and Conferences
KDE.News
covers
the beginning of the aKademy 2007 conference.
"
aKademy 2007 has started! Saturday, the first day of the conference, brought us many talks about various topics, ranging from very technical to more practically oriented. These talks are so content-rich that our coverage of the user conference will require several consecutive articles. Read on for the first aKademy 2007 Report, the First Impression."
Comments (none posted)
KDE.News continues its coverage of the aKademy 2007 conference with a look at
the Keynotes and
the Tracks.
"
Saturday opened with Lars Knoll, talking about KDE from the perspective of a troll. Trolltech employs over 50 full-time developers on Qt itself, accompanied by an assortment of testers and support personnel. Following the ideas behind 'extreme programming', Qt employs extensive code reviews and an incremental design." The official
KDE Conference Press Brochure [PDF] is also available.
Comments (none posted)
Linux.com
covers
the first day of the Ottawa Linux Symposium.
"
The opening day of the 9th annual Ottawa Linux Symposium (OLS) began with Jonathan Corbet, of Linux Weekly News and his now familiar annual Linux Kernel Report, and wrapped up with a reception put on by Intel where they displayed hardware prototypes for upcoming products."
Comments (none posted)
excess.org
reports
on some talks at OLS. "
The ninth annual OLS has begun in Ottawa's
sweltering summer heat. There are as many as three different talks and two
different tutorial topics being presented in each time slot. This is a
summary of the talks I attended in day 1." These talks include The
Kernel Report - Jon Corbet, KVM: The Kernel-Based Virtual Machine - Avi
Kivity, Kernel Support For Stackable File Systems - Josef Sipek, and more.
Comments (none posted)
excess.org covers
day two of the Ottawa Linux Symposium.
"
OLS topics on day two including Linux Kernel Development, EXT4, Cell Broadband Engine, Debugging Google clusters and LinuxBIOS."
Comments (none posted)
Excess.org continues its coverage of the Ottawa Linux Symposium with
this
summary from the third day. "
OLS topics on day three including
Lguest, SMB2, Large memory allocations and Concurrent Pagecache."
Comments (1 posted)
LinuxWorld
covers
a talk by Greg Kroah-Hartman at OLS. "
As the number of Linux kernel
contributors continues to grow, core developers are finding themselves
mostly managing and checking, not coding, said Greg Kroah-Hartman,
maintainer of USB and PCI support in Linux and co-author of Linux Device
Drivers, in a talk at the Linux Symposium in Ottawa Thursday."
Comments (none posted)
Companies
Tech.co.uk
notes the availability of Google Desktop for Linux.
"
Google's popular search application that indexes data on a computer, rather than online, is now available for Linux machines after the company's latest beta release.
The Linux version of Google Desktop joins a fully complete Windows program and a Mac version that is currently also in beta. It features all the indexing and searching features seen on other platforms but lacks some of the frills of the Windows application."
Comments (7 posted)
Linux-Watch
reports
on Red Hat's latest financial results.
"
The big Linux-business question of the latest financial quarter was: Would Red Hat be battered by Oracle? Knocked around by Microsoft and its new Linux partners, Novell, Xandros, and Linspire? Daunted by a Sun revival? Or would the Raleigh, NC-based Linux company turn in a great quarter?
And, the answer is, with total revenue of $118.9 million, an increase of 42 percent from the year ago quarter and up 7 percent from the prior quarter, Red Hat is back to kicking rump and taking names in business Linux."
Comments (none posted)
eWeek
reports
on licensing talks between Red Hat Inc. and Microsoft Corp.
"
Red Hat Inc. Chief Executive Matthew Szulik said his company last year held talks with Microsoft Corp. over a patent agreement that broke down before the software giant signed a deal with Red Hat rival Novell Inc.
The developer of Linux software, has yet to sign such a deal which could see Novell, its biggest rival, woo customers away from Red Hat and work on product development and sales with the world's No.1 software maker."
Comments (11 posted)
Interviews
Linux Journal features
an interview
with Mauricio Fernandez.
"
Last week, Mauricio Fernandez announced a new Ruby to OCaml bridge that hes working on, called rocaml. With the growing interest in functional languages in the Ruby world, this seemed like the sort of thing I needed to talk to him about, so I sent off a quick set of questions, and this is what I heard back."
Comments (none posted)
Resources
O'Reilly presents
part one of a series by Jack Herrington on Google Gears.
"
Web applications are great, that is until you go off the grid. As more and
more Ajax-driven tools are created that mimic desktop applications through
web interfaces, the ability to use those applications once the Wi-Fi signal
is lost becomes more important. Jack Herrington gives us an introduction to
Google Gears, a tool that allows just that kind of functionality."
Comments (none posted)
Dave Philips presents
part one of a
Linux Journal series on troubleshooting Linux audio systems.
"
I have a friend who has had nothing but nightmares result from his attempts at setting up the fabled low-latency high-performance Linux audio system. In sympathy with his plight I present here a primer in three parts for troubleshooting common and uncommon problems with the Linux sound system. Parts 1 & 2 will present programs used to analyze and configure your audio setup. Part 3 will list the most frequently encountered problems along with their suggested solutions."
Comments (none posted)
Issue #140 of the Linux Gazette has been published. Articles include:
A Router With Just One Ethernet Port, Custom Hobbit Monitoring Using SNMP,
Away Mission: Sem-Tech 07 Conference, Setting up an Encrypted Debian System,
Encrypted Storage with LUKS, RAID and LVM2, Will The Real Open Source CRM
Please Stand Up?, HelpDex, Ecol, The Geekword Puzzle and
The Linux Launderette.
Full Story (comments: none)
Bill Walton
works with Ruby on Rails in an O'Reilly article.
"
Paul and CB are back, and this time CB wants Paul to convince the Boss to try
a new approach to testing, one that leverages the powerful tools Rails can
offer. In the latest installment of Bill Walton's monthly series, you'll
learn how to build effective testing into your Rails projects."
Comments (none posted)
Reviews
the Inquirer
reviews a new release of the ATI Control Panel.
"
NINE MONTHS ago I wrote with surprise about how ATI's Linux Mobility drivers "didn't suck" yet how the Control Panel sucked. AMD has surprisingly made my complaints obsolete.
The latest Catalyst for Linux package on AMD's ATI/Linux support page at the time of this writing is version 8.38.6, a 51MB+ download released six days ago, and which I have been running so far for five days with my testing workhorse, the Gateway 7422 notebook which sports one ATI Mobility Radeon 9600 chipset with 64MB of video memory."
Comments (26 posted)
Linux Journal
takes a
look at the options in OpenOffice.org Calc. "
Like other
OpenOffice.org applications, Calc has several dozen options in how it is
formatted and operates. These options are available from Tools -> Options
-> OpenOffice.org Calc. Thanks to OpenOffice.org's habit of sharing code
between applications, some of the tabs for these options resemble those
found in other OpenOffice.org applications. Others are unique to Calc and
the business of spreadsheets. Either way, the more you know about Calc's
options, the more you can take control of your work."
Comments (none posted)
Miscellaneous
Groklaw
notes
that the state of Massachusetts has added Ecma-376 Office OpenXML to the
list of potentially acceptable "open formats". "
OpenXML doesn't
belong on any list of usable standards until it is one, a real one, where
the playing field is even. Instead, I gather from Weir's description that
it's like traveling to a new town and asking for a map, but the directions
are written in such a way that only longtime dwellers can read and follow
them. You as a newcomer have no way to understand them and hence find your
way around. If the directions say, "Go right when you get to the road where
Nellie used to live until she married that musician and moved to Memphis,"
you don't know Nelly or where she lived before."
Comments (none posted)
Page editor: Forrest Cook
Announcements
Non-Commercial announcements
The Foundation for a Free Information
Infrastructure (FFII) is offering a prize of up to 2,500 Euro
in a fight against standardization of the Microsoft OOXML format.
"
Veteran FFII campaigner Benjamin Henrion, founder of the noOOXML.org
site, explains: "Microsoft is spending millions on rent-a-crowd support
for international certification for its proprietary Office format,
OOXML. But we already have an ISO standard for word processing, called
ODF (Open Document Format). OOXML is Microsoft's attempt to subvert this
existing standard, to keep its strangle-hold on the world of documents.
It's time for activists across the world to stand up, to reach out to
their national ISO bodies, and to explain why Microsoft's format is not
open, not a standard, and not XML.""
Full Story (comments: 2)
The FSF Europe has posted
six questions on
Microsoft's "Open Office XML" format which, they believe, any agency
pondering standardizing on that format should be able to answer.
"
MS-OOXML is accompanied by an unusually complex and narrow 'covenant
not to sue' instead of the typical patent grant. Because of its complexity,
it does not seem clear how much protection from prosecution for
compatibility it will truly provide... Does your national standardisation
body have its own, independent legal analysis about the exact nature of the
grant to certify whether it truly covers the full spectrum of all possible
MS-OOXML implementations?"
Comments (none posted)
As expected, the final version of GPLv3 is now available. See
this page for the full
text. There have been some changes since the "last call" draft, but they
are mostly minor tweaks. Click below for the press release.
Full Story (comments: 28)
The Free Software Foundation press has sent out a press release concerning
the new Apple iPhone.
"
Tivoization and the iPhone?
"Tivoization" is a term coined by the FSF to describe devices that are
built with free software, but that use technical measures to prevent the
user from making modifications to the software -- a fundamental freedom
for free software users -- and an attack on free software that the GPLv3
will put a stop to.
The iPhone is leaving people questioning: Does it contain GPLed
software? What impact will the GPLv3 have on the long-term prospects for
devices like the iPhone that are built to keep their owners frustrated?"
Full Story (comments: 4)
KDE.News
reports
that KDAB has become a new patron of KDE.
"
The KDE e.V. and KDAB are happy to announce continued collaboration on the Free Desktop, with KDAB becoming the latest new Patron of KDE. KDAB is known for its high-quality software services."
Comments (none posted)
For those who have been waiting for an update on the completely open
OpenMoko phone project - one is finally out there. It seems that OpenMoko
has been absorbed into FIC, the company which is making the hardware.
Developers will be able to start ordering phones to hack on starting
July 9, with general availability happening in October. "
OpenMoko -- together with all of you in the community -- will design,
from the ground up, open devices and write the free software platform
that powers them. FIC will build the hardware and help us set phones
free around the world. This is about the most perfect relationship we
can think of."
Full Story (comments: 14)
Commercial announcements
Apatar, Inc. has
announced its launch of new open-source on-demand
data integration software tools and services.
"
Apatar helps users
integrate information between databases, files, and applications. Imagine
you could visually design (drag and drop) a workflow to exchange data and
files between files (Microsoft Excel spreadsheets, CSV/TXT files),
databases (such as MySQL, Microsoft SQL, Oracle), applications
(Salesforce.com, SugarCRM), and the top Web 2.0 destinations (Flickr, RSS
feeds, Amazon S3), all without having to write a single line of code. Users
install a visual job designer application to create integration jobs called
DataMaps, link data between the source(s) and the target(s), and schedule
one-time or recurring data transformations. Imagine this capability fits
cleanly and quickly into your projects."
Comments (none posted)
Funambol has
announced the launch of the myFUNAMBOL portal.
"
Funambol, the mobile open source software company, announced it will begin inviting
consumers today to join the new myFUNAMBOL portal to access free mobile
email, contacts and calendars on everyday cell phones. myFUNAMBOL also
provides the first over-the-air mobile contacts application for the new
iPhone, which demonstrates the pace of innovation available with open
source."
Comments (none posted)
Linspire, Inc. has
announced a collaboration with Microsoft involving document translation
software.
"
Linspire, Inc., developer of the
Linspire commercial and Freespire community desktop Linux operating
systems, today announced it will join the current efforts to improve the
ability of OpenOffice.org users to work with the Office Open XML format by
increasing the interoperability between ODF and Open XML.
Linspire is joining with others who have signed on to this effort,
including Novell and Xandros, to create bi-directional open source
translators for word processing, spreadsheets and presentations between ODF
and Open XML."
Comments (none posted)
Mandriva has announced the choosing of the Mandriva
Corporate Server 4.0 for the French Ministry of Agriculture and Fisheries
servers.
"
The Ministry of Agriculture and Fisheries chose to migrate its local
servers (about 400 machines) from Windows NT Server to Mandriva
Corporate Server 4.0, within two years.
This migration comes with a complete range of personalized services
(training and support). Mandriva was chosen to provide these services
which will continue over a period of 18 months and will potentially
involve more than 200 people in the ministry."
Full Story (comments: none)
Motorola, Inc.g has
announced plans to form an industry-wide consortium
that will support the OpenSAF (Service Availability Forum) project.
"
The company also announced the first release of the
open source code related to the project. The consortium also will manage
any future development of the OpenSAF code base. Leading companies
including Ericsson, HP and Nokia Siemens Networks have expressed support
for this initiative."
Comments (none posted)
OpenSceneGraph Professional
Services has announced the release of OpenSceneGraph 2.0.
"
OpenSceneGraph 2.0, written entirely in Standard C++ and built upon
OpenGL, offers developers working in the visual simulation, game
development, virtual reality, scientific visualization and modeling
markets a real-time visualization tool which rivals established
commercial scene graph toolkits in functionality and performance."
Full Story (comments: none)
Oracle Corporation and i-flex Solutions have
announced the availability of i-flex FLEXCUBE for Corebanking on the
IBM System z mainframe platform.
"
"Financial institutions are balancing requirements to control global
costs while enhancing responsiveness to rapidly capitalize on new growth
opportunities," said Rajesh Hukku, Senior Vice President and General
Manager, Oracle Financial Services Global Business Unit and Chairman at
i-flex solutions. "Oracle's increased leverage of the i-flex core banking
applications to provide support for zLinux reflects the company's
commitment to provide financial services companies with applications and
additional mainframe options that help accelerate development of new
products and services while and enhancing the value of existing systems.""
Comments (none posted)
Palamida has
announced the addition of GPLv3 detection to its IP Amplifier
intellectual property detection and reporting solution.
"
Palamida(TM), the leader in
software risk management solutions for open source, today announced that it
has enhanced IP Amplifier, the company's flagship intellectual property
detection and reporting solution, with the addition of the GPL v3 analyzer
functionality. Further expanding their solutions and services, Palamida has
also created a comprehensive GPL v3 online educational resource repository,
http://gpl3.palamida.com, to assist organizations looking to implement
software licensed under GPL v3."
Comments (none posted)
Paradigma Software, Inc. has announced the release of version 3.1
of its database technology and the first release of the
Valentina community database server.
"
Valentina technology release 3.1 provides many improvements to the
technologies that set Valentina apart from other databases. These features
include:
Link Refactoring Commands. New native API methods VLink2.CopyLinksTo() and
VLink2.CopyLinksFrom(), plus SQL COPY LINKS are powerful and flexible
methods to convert from relational database M:M schemas to much, much faster
Binary Link M:M. The same techniques support translations between Relational
FK, Binary Links and ObjectPtrs."
Full Story (comments: none)
New Books
O'Reilly has published the book
Beautiful Code by Andy Oram
and Greg Wilson.
Full Story (comments: none)
Two new books about OpenSceneGraph
have been published. The titles
include the OpenSceneGraph Quick Start Guide, and the
OpenSceneGraph Reference Manual v1.2.
Full Story (comments: none)
Event Reports
The papers accepted for the 2007 Ottawa Linux Symposium are
available online. Whether or not you were at the event, the papers are a useful reference on the topics which were discussed.
Comments (1 posted)
O'Reilly has a press release about the Tools of Change for Publishing
Conference (TOC) held last month. "
[TOC] was the first of its kind:
a conference dedicated to utilizing technology to create and maximize
publishing opportunities. Drawing nearly 500 attendees, this event was
produced by O'Reilly Media, Inc. Attendees included book publishers,
editors, marketing and production managers, publishing consultants,
authors, and business managers in publishing."
Full Story (comments: none)
Upcoming Events
Mandriva will be giving special edition Mandriva Flash USB keys to KDE
developers at the aKademy 2007 conference.
"
"We are very happy to welcome Mandriva as a silver sponsor for aKademy
2007", said Jonathan Riddell of the aKademy Team. "As a long term
supporter and distributor of KDE the summit organising team is looking
forward to giving our developers, contributors and industry partners
at the conference a special present from Mandriva.""
Full Story (comments: none)
The program for the RailsConf Europe 2007 has been released.
"
RailsConf Europe, taking place 17-19
September in Berlin, is being co-presented by Ruby Central, Inc. and
O'Reilly Media, Inc. This three day event, held at the Maritim proArte
Hotel, is dedicated entirely to Ruby on Rails. The Ruby on Rails
development framework, only three years old, has gone from cult favorite
to major player in the web development world."
Full Story (comments: none)
Events: July 12, 2007 to September 10, 2007
The following event listing is taken from the
LWN.net Calendar.
| Date(s) | Event | Location |
July 9 July 13 |
PostgreSQL 8.2 Bootcamp at the Big Nerd Ranch |
Atlanta, USA |
July 12 July 13 |
IV GUADEC-ES |
Granada, Spain |
July 12 July 13 |
DIMVA 2007 |
Lucerne, Switzerland |
| July 14 |
UK Gentoo Meeting 2007 |
London, UK |
July 15 July 21 |
GNOME Users' And Developers' European Conference |
Birmingham, England |
July 18 July 20 |
GCC and GNU Toolchain Developers' Summit |
Ottawa, Canada |
July 22 July 24 |
Ubuntu Live |
Portland, OR, USA |
July 23 July 27 |
O'Reilly Open Source Convention |
Portland, OR, USA |
July 23 July 27 |
Asterisk Bootcamp with Jared Smith at Big Nerd Ranch |
Atlanta, USA |
July 23 July 25 |
Open Group Enterprise Architecture Practitioners Conference |
Austin, TX, USA |
July 24 July 27 |
Ninth course on the Exim mail transfer agent |
Cambridge, UK |
July 28 August 2 |
Black Hat USA 2007 |
Las Vegas, NV, USA |
July 30 August 3 |
Ruby on Rails Bootcamp at the Big Nerd Ranch |
Atlanta, USA |
August 3 August 5 |
Wikimania 2007 (Annual Wikimedia conference) |
Taipei, Taiwan |
August 3 August 5 |
DefCon 15 |
Las Vegas, NV, USA |
August 4 August 7 |
LinuxWorld Conference & Expo |
San Francisco, CA, USA |
August 6 August 10 |
16th USENIX Security Symposium |
Boston, MA, USA |
August 6 August 9 |
LinuxWorld Conference and Expo |
San Francisco, CA, USA |
August 7 August 9 |
Flash Memory Summit 2007 |
Santa Clara, CA, USA |
August 7 August 11 |
7as Jornadas Regionales de Software Libre |
Córdoba, Argentina |
August 8 August 12 |
Chaos Communication Camp |
Finow airport, Germany |
| August 10 |
August Penguin 2007 |
Tel Aviv, Israel |
| August 11 |
Picn*x XVI - The Linux 16th Anniversary Picnic |
Sunnyvale, CA, USA |
August 11 August 15 |
Virtual FudCon8 |
Online, IRC |
August 14 August 18 |
Scientific Tools for Python |
Pasadena, CA, USA |
| August 19 |
Open Source Health Informatics Working Group |
Brisbane, Australia |
August 20 August 24 |
PHP Training at the Big Nerd Ranch |
Atlanta, USA |
August 20 August 25 |
DallasCon 2007-cancelled |
Dallas, Texas, USA |
August 22 August 25 |
Python 3000 Sprint |
Mountain View and Chicago, USA |
August 24 August 26 |
Summercon 2007 |
Atlanta, GA, USA |
August 25 August 26 |
FrOSCon 2007 |
Sankt Augustin (near Bonn), Germany |
August 27 September 1 |
International Computer Music Conference 2007 |
Copenhagen, Denmark |
August 28 August 29 |
XCon2007 |
Beijing, China |
August 29 August 31 |
KVM Forum 2007 |
Tucson, AZ, United States |
| September 1 |
ENOS 2007 |
Caldas da Rainha, Leiria, Portugal |
September 2 September 4 |
LinuxConf Europe 2007 |
Cambridge, England |
September 3 September 6 |
HITBSecConf2007 |
Kuala Lumpur, Malaysia |
September 5 September 7 |
RAID 2007 |
Gold Coast, QL, Australia |
September 5 September 6 |
2007 Linux Kernel Developers Summit |
Cambridge, UK |
September 5 September 7 |
Office 2.0 Conference |
San Francisco, CA, USA |
September 6 September 8 |
Intelligent Data Acquisition and Advanced Computing Systems |
Dortmund, Germany |
September 7 September 8 |
LinuxWorld China 2007 |
Beijing, China |
September 7 September 8 |
LinuxChix Brasil |
Asa Sul, Brazil |
September 8 September 12 |
GITEX Technology Week |
Dubai, United Arab Emirates |
September 8 September 9 |
PyCon UK 2007 |
Birmingham, UK |
If your event does not appear here, please
tell us about it.
Page editor: Forrest Cook